码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot(十五)-- 修改SpringBoot默认的错误页面

时间:2018-03-28 01:37:38      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:custom   add   tps   eth   pst   mbed   servlet   错误页面   ret   

修改SpringBoot默认的错误页面

  将以下代码放置到 main方法中。然后在resources 中的static中新建404.html、405.html

@Bean
public EmbeddedServletContainerCustomizer containerCustomizer() {
  return (container -> {
    ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/404.html");
    ErrorPage error405Page = new ErrorPage(HttpStatus.METHOD_NOT_ALLOWED, "/405.html");
    container.addErrorPages(error404Page, error405Page);
  });
}

 

SpringBoot(十五)-- 修改SpringBoot默认的错误页面

标签:custom   add   tps   eth   pst   mbed   servlet   错误页面   ret   

原文地址:https://www.cnblogs.com/xbq8080/p/8660980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!