「Spring MVC」例外ハンドリングSimple Mapping Exception Resolveの設定メモ
サンプルコード:
<!– configure SimpleMappingExceptionResolver –>
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props>
<prop key="java.lang.ArithmeticException">error</prop>
</props>
</property>
</bean>