Error code 모음/7. Dev Tools errors

[Intelli J Error] Element web-app must be declared error in intellij (java,springmvc,maven)

쟈누이 2021. 1. 25. 15:58
반응형

 

1. 에러의 원인


  • javaee 를 사용해서 발생한 에러 (인텔리 제이에는 따로 맞는 형식이 있는 것 같다

2. 해결 방법


  • javaee 관련된 것들을 J2ee 관련된 것들로 수정해준다 (아래와 같이 수정하면 된다)
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
     version="3.1">
</web-app>

3. 참고 링크


stackoverflow.com/questions/36028505/element-web-app-must-be-declared-error-in-intellij-java-springmvc-maven

 

Element web-app must be declared error in intellij (java,springmvc,maven)

this is my web.xml file which getting element web-app must be declared error stackoverflow.com

 

반응형