아래는 Properties 기본 설정들.
에러날시 달라진 점이 있는지 체크
web.xml 원본
<?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_3_1.xsd" id="WebApp_ID" version="3.1">
<display-name>JSPExample</display-name>
<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>
</web-app>
'코딩' 카테고리의 다른 글
스레드의 LifeCycle (0) | 2021.01.12 |
---|---|
서블릿(Servlet) 만들기 (0) | 2021.01.12 |
src에 Servlet 만들기 (자바코드를 통해 웹으로 출력) (0) | 2021.01.11 |
톰캣 war파일 배포하기 (0) | 2021.01.11 |
톰캣 CATALINA_HOME, path설정 그리고 서버 startup (0) | 2021.01.11 |