Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

민둉이의 책갈피

[ERROR] Attribute 'version' must appear on element 'web-app'. 본문

JAVA/ERROR

[ERROR] Attribute 'version' must appear on element 'web-app'.

김민둉 2021. 8. 5. 14:34

web.xml 에 빨간줄이 그어졌는데 실행은 잘 되지만 거슬려서..

 

에러 메시지 읽어보면 'version' 속성을 추가하라고 함

web-app 의 xsi-chemaLocation 벨류에 있는 버전을 확인하고 작성하면 해결됨

 

[에러]

<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">

 

 

[해결]

<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">