標籤:lan 沒有 選擇 oar pat jee tar myeclipse webp
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這些玩意。記得加上。
[html] view plain copy print?
- <?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檔案,這個裡面記得改你的輸出路徑。
[html] view plain copy print?
- <?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",如果有則成功了,如果沒有就選上。
從myeclipse匯入eclipse,不能識別為web項目(java項目轉為web項目)