1. 程式人生 > >java resources報錯解決方案

java resources報錯解決方案

這兩條遇到這個問題很煩,雖然沒有實際影響,但是程式設計師都不喜歡看到報錯
要做三個改動,一般就好了

1.改動其他版本成為3.0

<?xml version="1.0" encoding="UTF-8"?> 
<web-app version="3.0"
 xmlns="http://java.sun.com/xml/ns/javaee"  
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee  
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
>
<display-name>Archetype Created Web Application</display-name> </web-app>

2.找到工程根目錄,.setting檔案裡面一個xml,還是改動版本為3.0

<?xml version="1.0" encoding="UTF-8"?>
<faceted-project>
  <fixed facet="wst.jsdt.web"/>
  <installed facet="jst.web" version="3.0"/>
  <installed
facet="wst.jsdt.web" version="1.0"/>
<installed facet="java" version="1.8"/> <installed facet="jst.jaxrs" version="2.0"/> <installed facet="jst.jsf" version="2.2"/> </faceted-project>

3.還有一種可能就是什麼那個目錄missing,build path看下,然後給新建下目錄就好了