SpringMVCでの例外処理のサンプルデモアプリケーションに取り組んでいます。Exception Handling With @ControllerAdvice
を試しています。
this linkで説明されている手順に従いました。
しかし、アプリケーションを実行すると、次のエラーが発生します
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.test.core.ApplicationException
詳細については、私が取り組んでいるクラスを以下に示します。
ApplicationException.Java
public class ApplicationException extends RuntimeException{
/**
*
*/
private static final long serialVersionUID = -9061684361606685158L;
private ErrorStatus errorStatus;
private int msgNumber;
private Object []args;
public ApplicationException(){}
public ApplicationException(ErrorStatus errorStatus, int msgNumber,
Object[] args) {
this.errorStatus = errorStatus;
this.msgNumber = msgNumber;
this.args = args;
}
//getter setters
}
コントローラクラス
ApplicationExceptionController.Java
@Controller
@RequestMapping("/exception")
public class ApplicationExceptionController {
@RequestMapping(value="/error",method=RequestMethod.GET)
@ResponseBody
public void helloException()
{
throw new ApplicationException(ErrorStatus.NotFound,1,new Object[]{"Website"});
//here ErrorStatus is a enum class
}
}
そしてこれがGlobalExceptionHandlerクラスです
GlobalExceptionHandler.Java
@ControllerAdvice
public class GlobalExceptionHandler {
@ExceptionHandler
public void notFount(){
System.out.println("----------CaughtApplicationException-----------");
}
}
dispatcher-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation=
"http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<context:component-scan base-package="com.test.controller,com.test.core" />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="messageConverters">
<list> <ref bean="jsonConverter"/></list>
</property>
</bean>
<bean id="jsonConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
<property name="supportedMediaTypes" value="application/json" />
</bean>
上記のアプリケーションを http:// localhost:8080/SpringExceptionHandling/exception/error thisurlで実行します
しかし、私は次の例外を受け取ります
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is com.test.core.ApplicationException
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.Java:894)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.Java:778)
javax.servlet.http.HttpServlet.service(HttpServlet.Java:621)
javax.servlet.http.HttpServlet.service(HttpServlet.Java:722)
root cause
com.test.core.ApplicationException
com.test.controller.ApplicationExceptionController.helloException(ApplicationExceptionController.Java:19)
Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
Sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
Sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
Java.lang.reflect.Method.invoke(Unknown Source)
org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.Java:214)
org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.Java:132)
org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.Java:100)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.Java:604)
org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.Java:565)
org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.Java:80)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.Java:923)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.Java:852)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.Java:882)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.Java:778)
javax.servlet.http.HttpServlet.service(HttpServlet.Java:621)
javax.servlet.http.HttpServlet.service(HttpServlet.Java:722)
私は @ ControllerAdvice例外ハンドラメソッドが呼び出されません このリンクを通過しますが、それでも同じ問題で立ち往生しています解決策を得るのを手伝ってください。この例外の実際の原因はわかりません。
あなたは行方不明です@EnableWebMvc
例外ハンドラーのアノテーション。例外ハンドラーは次のようになります。
@EnableWebMvc
@ControllerAdvice
public class GlobalExceptionHandler {
@ExceptionHandler({ApplicationException.class})
public void notFount(){
System.out.println("----------CaughtApplicationException-----------");
}
@ExceptionHandler({Exception.class})
public void notFountGlobal(){
System.out.println("----------CaughtApplicationException-----------");
}
}
また、どのメソッドでどの例外をキャッチするかを例外ハンドラメソッドに指示する必要があります。最後に、Exception.classを渡す他のすべての例外をキャッチできるメソッドを指定できます。あなたが投稿したコードスニペットは私のために働いています。うまくいけば、それはあなたの問題を解決するでしょう。
私の場合、メソッドシグネチャにパラメータが追加されているため、ハンドラメソッドは呼び出されません。
動作していません:
@ExceptionHandler(NoHandlerFoundException.class)
public ModelAndView handle404(HttpServletRequest request, Exception e, @RequestHeader(value = "referer", required = false) final String referer) {
...
}
referer
パラメーターは、ハンドラーメソッドが呼び出されない原因です。パラメータを削除すると、問題は解決します。
作品:
@ExceptionHandler(NoHandlerFoundException.class)
public ModelAndView handle404(HttpServletRequest request, Exception e) {
...
}
メソッドを例外タイプにマップできるように、例外を宣言する必要があります。 2つの可能性があります。どちらも、例外を引数として記述します。
public void notFount(ApplicationException exception){
または
@ExceptionHandlerアノテーションの値属性としてタイプを追加します
@ExceptionHandler(value = ApplicationException.class)
さらに、設定の問題が発生している可能性があります。これは、投稿したエラーGlobalExceptionHandler
が原因で、サーブレットが起動せず、メソッドに例外タイプがマップされていないことを明示的に示しています。 GlobalExceptionHandler
が存在するパッケージを、見た目でスキャンしていることを確認してください。これが問題である可能性が最も高いです。