반응형
웹사이트의 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> 속성은 설정하지 않는다.
출처 :
반응형
'메모' 카테고리의 다른 글
티스토리에서 pdf 뷰어 넣는 HTML 코드 (3) | 2021.03.18 |
---|---|
[Maven ] pom.xml 의 scope란? (0) | 2021.02.24 |
[ starUML ]다이어그램 툴 (0) | 2021.02.03 |
[ vscode ] Workspace에서 필요없는 폴더/파일 숨기기 (0) | 2021.01.22 |
인텔리제이 스프링 프로젝트 생성 (0) | 2021.01.16 |