package com.tianbo.imfClient.config; 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; /** * @descrption 需要解决srpingboot error页面模板 * @author mrz * @date 20190414 */ @Component public class ErrorPageConfig implements ErrorPageRegistrar { @Override public void registerErrorPages(ErrorPageRegistry registry){ ErrorPage[] errorPages=new ErrorPage[2]; errorPages[0]=new ErrorPage(HttpStatus.NOT_FOUND,"/error404"); errorPages[1]=new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR,"/error500"); registry.addErrorPages(errorPages); } }