* 아래와 같은 에러 발생 시



* 발생 원인

web-app 요소에 반드시 버전을 표기해야만 하므로 발생하는 에러로 web-app 태그에 버전을 명시합니다.



* 조치 사항

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    id="WebApp_ID" version="2.4">
    <display-name>board</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>
 
cs

* id="WebApp_ID" 의 부분을 version="2.4" 으로 수정 후 저장합니다.



'Tools > Eclipse' 카테고리의 다른 글

웹 어플리케이션, war 파일 추출  (0) 2017.11.02
[에러] Faceted Project Problem  (0) 2017.10.31

+ Recent posts