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

【eclipse】eclipse报错:the resource is not on the build path of a java project

程序员文章站 2022-03-28 19:44:08
最近在eclipse中,使用svn导入svn上的一个maven项目,但是导入后类的包并没有以源码包的方式显示,而是以普通文件包的方式显示出来,在对类进行F3等操作时就报错:“the resource is not on the build path of a java project”。 这种情况的 ......

最近在eclipse中,使用svn导入svn上的一个maven项目,但是导入后类的包并没有以源码包的方式显示,而是以普通文件包的方式显示出来,在对类进行F3等操作时就报错:“the resource is not on the build path of a java project”。

这种情况的原因是在该工程的构建路径中找不到该类。

解决方法:

1. 找到Java Build Path下面的src下的文件remove掉(如果src包没有正常显示),然后再Add Folder重新加上去,此时会更新所有目录。

2. 关闭该类或重启eclipse,重新打开即可

【eclipse】eclipse报错:the resource is not on the build path of a java project