美文网首页
@RestControllerAdvice 无法拦截到404原因

@RestControllerAdvice 无法拦截到404原因

作者: 忘记_3a6a | 来源:发表于2020-03-08 09:53 被阅读0次

404被tomcat容器拦截了到不了controller也就到不了@ControllerAdvice

自定义404的处理方法可以参考以下几种方法:

http://www.cnblogs.com/handso...

解决方法

在yml文件中添加

# 不要为我们工程中的资源文件建立映射
spring:
  resources:
    add-mappings: false
  mvc:
    throw-exception-if-no-handler-found: true  #  出现错误时, 直接抛出异常

相关文章

网友评论

      本文标题:@RestControllerAdvice 无法拦截到404原因

      本文链接:https://www.haomeiwen.com/subject/iqzrdhtx.html