메모

web.xml - <welcome-file-list> 란?

surimi🍥 2021. 2. 24. 13:53
반응형

웹사이트의 root("/")경로로 접속할때 불러올 파일을 지정한다.

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>

 

서버를 실행시키고 "localhost:8080/" 로 접속시

먼저 가장 첫번째 <welcome-file>인 index.html을 불러온다.

 

만약 index.html을 불러오는데 실패하는 경우,

그 아래 입력된 파일들을 순차적으로 찾는다.

 

 

controller에 @RequestMapping에 경로를 "/"로 잡은 항목이 있으면

해당 항목이 가장 상위 페이지 ( "localhost:8080/" )가 되므로

<welcome-file-list> 속성은 설정하지 않는다.

 

 

출처 :

bluesmile-dev.tistory.com/13

atoz-develop.tistory.com/

반응형