从myeclipse导入eclipse,不能识别为web项目(java项目转为web项目)
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"?><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>