- 配置项目异常统一处理方法和返回页面
这里使用thymeleaf示例,在类com.knight.configdemo.config.WebMVCConfig
中是配置thymeleaf的相关配置都是模板代码。 WebMVCConfig
通过自定义类实现,在类com.knight.configdemo.base.ApiResponse
中实现,AppErrorController
在spring boot中通过实现类org.springframework.boot.autoconfigure.web.ErrorController
处理全局错误;详情见类com.knight.configdemo.base.AppErrorController
在上面的类中配置错误页面处理和API接口处理 AppErrorController
properties文件中已经配置了thymeleaf的路径,在templates目录下新建404.html、403.html、500.html文件 templates