在springboot引用中,我们写了一套restful的接口,同时对error进行全局异常处理,但是在发现在没有handler接口的时候,并没有报错,而是跳转到了404的错误页面,在方法上注解了@ExceptionHandler(NoHandlerFoundException.class)
其实并没有被调用。在谷歌上搜索了一番,找到了一些解决方法,
@Bean
public ServletRegistrationBean dispatcherRegistration(DispatcherServlet dispatcherServlet) {
ServletRegistrationBean registration = new ServletRegistrationBean(
dispatcherServlet);
dispatcherServlet.setThrowExceptionIfNoHandlerFound(true);
return registration;
}
在设置上面的配置后,用起来没有问题。一段时间后,有个需求需要添加一个接口,上传头像。开发完后,始终不能上传文件,然后逐步排查,发现就是我们自定义了ServletRegistrationBean 而少了很多配置。在这个bean里面有个MultipartConfigElement属性,用于配置文件上传的配置。我们自定义了后,系统就没有自动配置了(DispatcherServletAutoConfiguration)。
后来找了半天,其实setThrowExceptionIfNoHandlerFound可以在配置文件中进行配置,就不用自定义bean。
spring.mvc.throw-exception-if-no-handler-found: true
配置后,就妥妥的。