在springboot錯誤默認是跳轉到 請求返回渲染路徑中的error/錯誤頁面中。
源碼分析:DefaultErrorViewResolver.java
比如在application.properites中配置渲染頁面為
#配置freemaker
spring.freemarker.template-loader-path=/WEB-INF/
如果不配置spring.freemarker.template-loader-path,springboot會在src/main/resources中的templates中的error文件下下找錯誤渲染的頁面。
那么當出現錯誤時,系統會跳轉到/WEB-INF/error/錯誤頁面中。
使用AOP進行web層異常處理
微信公眾號


