Custom exception handler for NoHandlerFoundException is not working without @EnableWebMvc

有些话、适合烂在心里 提交于 2019-12-11 13:44:13

问题


I want to override html error page for 404 responses as an JSON response. When i use @ControllerAdvice without @EnableWebMvc it is not working.

@EnableWebMvc   // if i remove this, it is not working
@ControllerAdvice
@Order(Ordered.HIGHEST_PRECEDENCE)
public class GlobalControllerExceptionHandler {

    @ExceptionHandler(NoHandlerFoundException.class)
    public ResponseEntity<ZeusErrorDTO> noHandlerFoundException(
                    HttpServletRequest request, 
                    NoHandlerFoundException exception) {

        ErrorDTO errorDTO = new ErrorDTO();
        return new ResponseEntity<>(errorDTO, HttpStatus.NOT_FOUND);
    }
} 

Is there an option for custom exception handling without @EnableWebMvc, because it overrides Spring configurations which are declared inside application.yml.


回答1:


I easily resolved problem by adding one of configurations in application.yml.

spring.mvc.throw-exception-if-no-handler-found=true
spring.resources.add-mappings=false

or

spring.mvc.throw-exception-if-no-handler-found=true
spring.mvc.static-path-pattern: /static

If you don't restrict Spring and no handler matches with your request, then spring tries to look for static content.




回答2:


Normally @utkusonmez answer works fine but not in my case, as I am using swagger. So all I did is add following properties in my application.properties file

spring.mvc.throw-exception-if-no-handler-found=true
spring.mvc.static-path-pattern=/swagger*

Now both NoHandlerFoundException and swagger-ui works fine.




回答3:


This is happening because, using @EnableWebMvc disables MVC autoconfiguration and asks you to provide exactly what You want. Have a look at this link
You can either use other means to customize your configuration, such as a @Configuration See Boot's WebMvcAutoConfiguration to find out what the defaults are, and copy over the pieces that you need.

This Link might help You as well -> LINK

What should you do when you want to customize your beans? As usual, extend WebMvcConfigurerAdapter (annotate the new class with @Component) and do your customizations.
So, bottom line of the particular problem: Don’t use @EnableWebMvc in Spring Boot, just include spring-web as a maven/gradle dependency and it will be autoconfigured.

This answer on stackoverflow shows how to do this .. check this LINK3



来源:https://stackoverflow.com/questions/49167033/custom-exception-handler-for-nohandlerfoundexception-is-not-working-without-ena

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!