본문 바로가기
개발/java

java 404, 500에러 페이지 지정 및 에러페이지 템플릿 만들기

by 황태고블린 2022. 2. 3.

web.xml 에 아래 내용 추가

<error-page>
  	<error-code>404</error-code>
  	<location>/errorPage/404page.jsp</location>
</error-page>
	
<error-page>
  	<error-code>500</error-code>
  	<location>/errorPage/500page.jsp</location>
</error-page>

 

404페이지와 500페이지를 좀 이쁘게 만들고 싶다면 아래 사이트를 참조해 만들면 된다

css와 html로 간편하게 구성되어있다

 

https://www.bootdey.com/snippets/view/500-page-error-option

 

Bootstrap snippet. 500 page error option

Bootstrap snippets. 500 page error option using HTML, Javascript, jQuery, and CSS by Bootdey

www.bootdey.com

 

https://www.bootdey.com/snippets/tagged/error404

 

Bootstrap error404 Examples

Free bootstrap error404 example using HTML, Javascript, jQuery, and CSS that can help you build your responsive website

www.bootdey.com

 

댓글