본문 바로가기

WAS/WebLogic

[WebLogic] ErrorPage 설정

728x90

404.jsp 생성

/sw/myapp/WEB-INF/web.xml 에 아래의 내용 작성

<web-app>
	<error-page>
		<error-code>404</error-code>
		<location>/404.jsp</location>
	</error-page>
</web-app>