본문 바로가기

개발/Java & Kotlin

web.xml에 welcome-file 설정하는 방법

프로젝트를 Run했을 때, 내가 원하는 View(html/jsp)로 바로 이동하려면

web.xml에서 welcome-file을 지정해주면 된다!

<welcome-file-list>
    <welcome-file>/WEB-INF/views/board.jsp</welcome-file>
</welcome-file-list> 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

경로는 webapp이 기본값이므로

여기부터 경로 지정을 하면 된다

그리고 앞에 '/'를 꼭 붙여주어야 한다.

반응형