방법 1: (서버에 단일 사이트를 설정하는 데 적합)
(d:demo는 사이트 루트 디렉터리입니다)
Tomcat에서 기본 홈 페이지는 index.html, index.htm, index.jsp입니다.
다른 페이지를 기본 홈페이지로 사용해야 하는 경우 WEB-INF 폴더에 web.xml 파일을 구성해야 합니다.
위의 예에서와 같이:
D:demoWEB-INF 폴더에 web.xml 파일을 만듭니다.
내용은 다음과 같습니다.
<?xml 버전=”1.0″ 인코딩=”UTF-8″?>
<웹앱 버전=”2.4″
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi=”http://www.w3.org/2001/XMLSchema-인스턴스”
xsi:schemaLocation=”http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd ">
<환영 파일 목록>
<welcome-file>hello.jsp</welcome-file>
</welcome-파일-목록>
</web-app>
방법 2: (다음 설정은 이 서버 아래의 모든 사이트에 적용됩니다.) conf/web.xml 파일을 열고 다음 코드를 찾는 것이 좋습니다:
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
중간에 원하는 파일명을 추가하시면 됩니다.
예: hello.jsp를 기본 홈페이지로 지정하고 위 코드를
<welcome-file-list>
로 변경합니다.
<welcome-file>hello.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-파일-목록>