Eclipse导入Web项目 src、web、css、js等变成包解决办法

December 16, 2023
测试
测试
测试
测试
1 分钟阅读

1.问题描述

git克隆下来一个普通的Java web项目

[root@hadron hadron]# git clone -b kylin git@192.168.1.2:hadron/web_store.git

然后Eclipse导入该web项目产生异常,整个项目成为Java Resources的子目录,src变成了包,jsp web页面,css,javascript等也变成了包。

这里写图片描述
这里写图片描述

2.解决办法

因为该项目从git上克隆下来时,缺少.classpath和.project文件。 从其他项目复制粘贴并修改.classpath,.project的部分内容

[root@hadron web_store]# cp  .classpath /opt/web_store
cp:是否覆盖"/opt/web_store/.classpath"? y
[root@hadron web_store]# cp .project /opt/web_store
cp:是否覆盖"/opt/web_store/.project"? y
[root@hadron web_store]#

然后再重新打开Eclipse,等待一会即可。

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多