본문 바로가기
JAVA/Spring-boot

Spring Boot 404 , 500 에러 페이지 만들기

by 예닌잉 2020. 4. 6.
728x90

Spring Boot를 사용하면서 404, 500 에러가 발생했을 경우

조금이라도 빠르게 원인을 파악하기 위해서 따로 에러페이지를 만들어보았다.

 

 

스프링에서 기본 에러 처리 화면은

 

이런 에러 페이지가 보여지게되는데

Tomcat에서 만들어지는것이아니라 Spring에서 만들어져서 보여지게되는 에러 페이지다.

( 기본적으로 만들어지는 에러 페이지는 BasicErrorController )

 

 

 

 

 

그러나 더 ! 간단하게 만드는 방법!

main - resources - static - error 경로에

404.html , 500html 파일을 만들어주기만하면

알아서 인식되어 에러 페이지를 보여준다.

 

넘 간단해서 놀라울정도... 후후..

 

 

1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>404 page not found</title>
</head>
<body>
404 error
</body>
</html>
cs
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>500 page not found</title>
</head>
<body>
500 error
</body>
</html>
cs

 

반응형