1、進入項目目錄,找到.project文件,打開。
2、找到<natures>...</natures>代碼段。
3、在第2步的代碼段中加入如下標簽內容並保存:
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
4、刪除.setting下的文件,從其它EclipseJee web項目[記住為了保險起見,一定要用eclipse新建一個]的.setting文件下拷貝以下文件[其實就是把整個文件夾都拷過來]
.jsdtscope
org.eclipse.jst.common.project.facet.core.prefs
org.eclipse.wst.common.component
org.eclipse.wst.common.project.facet.core.xml
org.eclipse.wst.jsdt.ui.superType.Container
org.eclipse.wst.jsdt.ui.superType.name
修改org.eclipse.wst.common.component中項目名稱相關的內容
比如下面的jngl_mysql換成你的項目名稱。
然后wb-resource就是你的資源文件,默認是src一個。如果你是用maven可能是src/Java/main,src/java/resource這些玩意。記得加上。
- <?xml version="1.0" encoding="UTF-8"?>
- <project-modules id="moduleCoreId" project-version="1.5.0">
- <wb-module deploy-name="jngl_mysql">
- <wb-resource deploy-path="/" source-path="/WebRoot" tag="defaultRootSource"/>
- <wb-resource deploy-path="/WEB-INF/classes" source-path="/src"/>
- <property name="context-root" value="jngl_mysql"/>
- <property name="java-output-path" value="/jngl_mysql/WEB-INF/classes"/>
- </wb-module>
- </project-modules>
然后是.jsdtscope文件,這個里面記得改你的輸出路徑。
- <?xml version="1.0" encoding="UTF-8"?>
- <classpath>
- <classpathentry kind="src" path="WebRoot"/>
- <classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
- <classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
- <attributes>
- <attribute name="hide" value="true"/>
- </attributes>
- </classpathentry>
- <classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
- <classpathentry kind="output" path=""/>
- </classpath>
5、在eclipse的項目上點右鍵,刷新項目。
6、在項目上點右鍵,進入屬性(properties)
7、在左側列表項目中點擊選擇“Project Facets”,在右側看看不是選擇了“Dynamic Web Module”和"Java",如果有則成功了,如果沒有就選上。

