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