Spring Boot

[Spring Boot] 쉽게 에러 페이지 Customizing 하는 법

KEMON 2020. 8. 23. 01:49
728x90

1. resources밑의 폴더에 error 폴더를 만들고 그 안에 Error로 html을 만든다. (resources/static/error/)

   

5error 페이지 위치 /resources/static/error/

5xx.html은 500번대의 에러 페이지

404.html은 404 에러 페이지를 정의한다.

 

2. Error.html을 만든다.  (404.html)

 

404.html

3. 404 Error Page를 확인해보자 ! 

localhost:8080/error1

다음과 같이 404에러 발생 시 404.html에서 설정한 페이지를 확인할 수 있다.

Customizing 완료!!

 

728x90