欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决 It appears that the Web Project,“”,has no Web Root directory setup 问题

程序员文章站 2022-04-20 21:46:29
...

1.解决 It appears that the Web Project,“”,has no Web Root directory setup 问题
因为项目是用eclipse新建的,web的根文件夹文件夹是WebContent。而MyEclipse新建的项目的Web根文件夹是WebRoot。直接将eclipse项目复制到新建的MyEclipse项目中。并将WebRoot文件文件夹删除。导致编译报错
解决的方法
点击上图中的MyEclipse Web project properties,进入Web-root folder和 Web Context-root的改动 :改成src/main/webapp
解决 It appears that the Web Project,“”,has no Web Root directory setup 问题
如果以上方法不行
请往下看
2.在.settings文件夹下打开此文件 删除标明内容即可:
.setting-org.eclipse.wst.common.component.xml

 <?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
    <wb-module deploy-name="XXXX">
    -- 删除开始
    <wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
    -- 删除结束
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
相关标签: myeclipse