<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" version="4.0">
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>0</param-value>
</init-param>
<init-param>
<param-name>listings</param-name>
<param-value>true</param-value>
<!-- default:false -->
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<welcome-file-list>
<welcome-file>welcome.jsp</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
WEB-INF 폴더내에 위치시킴
리스트 확인 가능
'Java > JSP' 카테고리의 다른 글
JSP - FTA 환경설정 #1 (0) | 2019.07.16 |
---|---|
Server.xml workDir 설정 (0) | 2019.07.16 |
SMS 발송서비스 만들기(feat. 네이버클라우드 SENS 이용) #2 (0) | 2019.07.07 |
SMS 발송서비스 만들기(feat. 네이버클라우드 SENS 이용) #1 (2) | 2019.07.07 |
Javascript 복습 - 2 (0) | 2019.06.21 |