今天在公司的gitLab上down了个新的项目下来,发现无法部署到tomcat上,搜了一下,有说右击原项目名 - myeclipse - Add myeclipse Web Capilities的,有说改xxx配置文件的,我试了一下都不行。最后发现是因为.setting文件夹里面的内容也是从gitLab上down下来的,.setting是myeclipse自己生成的,根据IDE版本的不同生成的文件也不一样,按道理这些文件不应该上传到gitLab上。
我是这样解决的,在myeclipse中新建一个同类型的项目,把.setting里面的内容拷贝一份到这个无法部署的项目,重启->刷新,搞定!!
需要注意的是.jsdtscope文件
我修改了<classpathentry kind="src" path="src/main/webapp"/>
默认的是<classpathentry kind="src" path="WebRoot"/>
我是这样解决的,在myeclipse中新建一个同类型的项目,把.setting里面的内容拷贝一份到这个无法部署的项目,重启->刷新,搞定!!
需要注意的是.jsdtscope文件
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src/main/webapp"/>
<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/StandardBrowser/html5"/>
<classpathentry kind="output" path=""/>
</classpath>
我修改了<classpathentry kind="src" path="src/main/webapp"/>
默认的是<classpathentry kind="src" path="WebRoot"/>