springboot의 error 페이지 설정

2608 단어 springboot
다음에서 시작합니다.https://blog.csdn.net/qq_35489575/article/details/79052513

  
import org.springframework.boot.context.embedded.ConfigurableEmbeddedServletContainer;  
import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer;  
import org.springframework.boot.web.servlet.ErrorPage;  
import org.springframework.context.annotation.Bean;  
import org.springframework.context.annotation.Configuration;  
import org.springframework.http.HttpStatus;  
  
/** 
* 잘못된 페이지 구성
 */  
@Configuration  
public class ErrorPagesConfig {  
@Bean//이 메모는 잊지 말고 덧붙여야 한다는 것을 명심하세요
    public EmbeddedServletContainerCustomizer containerCustomizer(){  
        return new EmbeddedServletContainerCustomizer() {  
            @Override  
            public void customize(ConfigurableEmbeddedServletContainer container) {  
//상태 코드 오류 페이지의 저장 경로입니다
                ErrorPage errorPage400 = new ErrorPage(HttpStatus.BAD_REQUEST, "/error-400.html");  
                ErrorPage errorPage404 = new ErrorPage(HttpStatus.NOT_FOUND, "/error-404.html");  
                ErrorPage errorPage500 = new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/error-500.html");  
//...혼자서 하나씩 보완할 수 있다
                container.addErrorPages(errorPage400,errorPage404,errorPage500);  
            }  
        };  
    }  
}  
만약 당신이 오류 인코딩과 오류 정보를 설계한 Exception이 있다면, My Exception extends Runtime Exception으로 정의합니다.
어디가 틀려요 throw My Exception
Controller 구성
@ControllerAdvice를 사용하여 통합 예외 처리:
@ControllerAdvice
public class MyExceptionHandler {
    @ExceptionHandler(value = MyException.class)
    public String MyExceptionHandler(){
        return "error";

    }
}
 , Model model , 。

좋은 웹페이지 즐겨찾기