Spring Boot 2.x 配置404、500等错误页面
作者:互联网
在Spring Boot 2.x 中,服务器端404等页面配置与之前1.x 的版本有很大不同,下面是设置步骤(虽然很简单,但是如果不知道还是会遇到很多问题,像我一样):
第一步,编写ErrorPageConfig:
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.web.server.ErrorPage;
import org.springframework.boot.web.server.ErrorPageRegistrar;
import org.springframework.boot.web.server.ErrorPageRegistry;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Component;
@Component
@Slf4j
public class ErrorPageConfig implements ErrorPageRegistrar {
@Override
public void registerErrorPages(ErrorPageRegistry registry) {
ErrorPage e404=new ErrorPage(HttpStatus.NOT_FOUND,"/error/404");
ErrorPage e500=new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR,"/error/500");
registry.addErrorPages(e404,e500);
}
}
这个组件类需要实现ErrorPageRegistrar接口,顾名思义,就是错误页面注册器,你只需要给相应的Http错误码配置跳转路径即可。
第二步,配置Controller类,和普通Controller一样:
@Controller
public class ErrorController {
@GetMapping("/error/404")
public String error404(){
return "error/404";
}
@GetMapping("/error/500")
public String error500(){
return "error/500";
}
}
这样你只需把相应的HTML页面放在对应的路径下就行了。
铁血丹心. 发布了16 篇原创文章 · 获赞 1 · 访问量 443 私信 关注标签:Spring,org,Boot,404,ErrorPage,error,import,public 来源: https://blog.csdn.net/weixin_44874115/article/details/104443385