Spring Boot基礎教程9-web應用開發-錯誤處理

  • 錯誤的處理

方法一:Spring Boot 將所有的錯誤默認映射到/error, 實現ErrorController

@Controller

@RequestMapping(value = "error")

public class BaseErrorController implements ErrorController {

private static final Logger logger = LoggerFactory.getLogger(BaseErrorController.class);

 

       @Override

       public String getErrorPath() {

              logger.info("出錯啦!進入自定義錯誤控制器");

              return "error/error";

       }

 

       @RequestMapping

       public String error() {

              return getErrorPath();

       }

 

}

 

方法二:添加自定義的錯誤頁面

2.1 html靜態頁面:在resources/public/error/ 下定義

如添加404頁面: resources/public/error/404.html頁面,中文注意頁面編碼

2.2 模板引擎頁面:在templates/error/下定義

如添加5xx頁面: templates/error/5xx.ftl

注:templates/error/ 這個的優先級比較 resources/public/error/高

 

方法三:使用註解@ControllerAdvice

/**

        * 統一異常處理

        *

        * @param exception

        *            exception

        * @return

        */

       @ExceptionHandler({ RuntimeException.class })

       @ResponseStatus(HttpStatus.OK)

       public ModelAndView processException(RuntimeException exception) {

              logger.info("自定義異常處理-RuntimeException");

              ModelAndView m = new ModelAndView();

              m.addObject("roncooException", exception.getMessage());

              m.setViewName("error/500");

              return m;

       }

 

       /**

        * 統一異常處理

        *

        * @param exception

        *            exception

        * @return

        */

       @ExceptionHandler({ Exception.class })

       @ResponseStatus(HttpStatus.OK)

       public ModelAndView processException(Exception exception) {

              logger.info("自定義異常處理-Exception");

              ModelAndView m = new ModelAndView();

              m.addObject("roncooException", exception.getMessage());

              m.setViewName("error/500");

              return m;

   }

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章