Sta*_*ion 7 java spring annotations exception spring-mvc
我想在我的Spring MVC Web应用程序中处理404页面未找到异常,我正在使用SPRING 4.2.5.RELEASE
,我已经阅读了有关此主题的几个问题,但类似的问题是使用不同的spring java配置.
我有一个全局异常处理程序控制器类,它有我的所有异常,这个类工作正常,但我无法处理404页面未找到异常.
这是我按照教程学习的方法
1)我创建了一个名为类ResourceNotFoundException
,从扩展RuntimeException
和我的推杆此标注在类定义@ResponseStatus(HttpStatus.NOT_FOUND)
像这样:
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {
}
Run Code Online (Sandbox Code Playgroud)
2)我在异常的控制器类中创建了这个方法
@ExceptionHandler(ResourceNotFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)
public String handleResourceNotFoundException() {
return "notFoundJSPPage";
}
Run Code Online (Sandbox Code Playgroud)
但是,当我放置一个不存在的URL时,我收到此错误"找不到带HTTP的HTTP请求的映射"
我读过的问题说我需要启用Dispatcher的一个选项,但由于我的配置与其他问题不同而且我没有,Web.xml
我无法应用它.
这是我的Config.java
@EnableWebMvc
@Configuration
@ComponentScan({"config", "controllers"})
public class ConfigMVC extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**").addResourceLocations("/WEB-INF/resources/");
}
@Bean
public UrlBasedViewResolver setupViewResolver() {
UrlBasedViewResolver resolver = new UrlBasedViewResolver();
resolver.setPrefix("/WEB-INF/jsp/");
resolver.setSuffix(".jsp");
resolver.setViewClass(JstlView.class);
return resolver;
}
}
Run Code Online (Sandbox Code Playgroud)
这是我的WebInitializer
public class WebInicializar implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(ConfigMVC.class);
ctx.setServletContext(servletContext);
Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
}
}
Run Code Online (Sandbox Code Playgroud)
这是我的全局异常处理程序控制器
@ControllerAdvice
public class GlobalExceptionHandlerController {
@ExceptionHandler(value = NullPointerException.class)
public String handleNullPointerException(Exception e) {
System.out.println("A null pointer exception ocurred " + e);
return "nullpointerExceptionPage";
}
@ResponseStatus(value = HttpStatus.INTERNAL_SERVER_ERROR)
@ExceptionHandler(value = Exception.class)
public String handleAllException(Exception e) {
System.out.println("A unknow Exception Ocurred: " + e);
return "unknowExceptionPage";
}
@ExceptionHandler(ResourceNotFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)
public String handleResourceNotFoundException() {
return "notFoundJSPPage";
}
}
Run Code Online (Sandbox Code Playgroud)
我创建的类扩展了Runtime Exception
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException{
}
Run Code Online (Sandbox Code Playgroud)
我把这行放在我的onStartup
方法中解决了这个问题WebApplicationInitializer.class
这是我添加的行 servlet.setInitParameter("throwExceptionIfNoHandlerFound", "true");
这就是我添加新行的完整方法
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
AnnotationConfigWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
ctx.register(ConfigMVC.class);
ctx.setServletContext(servletContext);
Dynamic servlet = servletContext.addServlet("dispatcher", new DispatcherServlet(ctx));
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
servlet.setInitParameter("throwExceptionIfNoHandlerFound", "true");
}
Run Code Online (Sandbox Code Playgroud)
然后我在我的中创建了这个控制器方法 GlobalExceptionHandlerController.class
@ExceptionHandler(NoHandlerFoundException.class)
@ResponseStatus(HttpStatus.NOT_FOUND)
public String handle(NoHandlerFoundException ex) {
return "my404Page";
}
Run Code Online (Sandbox Code Playgroud)
这解决了我的问题我删除了我的handleResourceNotFoundException
控制器方法,GlobalExceptionHandlerController.class
因为它没有必要,我也删除了ResourceNotFoundException.class
我创建的异常类
归档时间: |
|
查看次数: |
22922 次 |
最近记录: |