「Spring MVC」例外ハンドリングSimple Mapping Exception Resolveの設定メモ

2017年9月26日

サンプルコード:
<!– configure SimpleMappingExceptionResolver –>
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="exceptionMappings">
<props>
<prop key="java.lang.ArithmeticException">error</prop>
</props>
</property>
</bean>

Java

Posted by arkgame