新建项目没有src/main/java 和 src/main/resources 两个source文件的解决方法: Step 1 : Create a Maven Webapp project. Right click on the Package Explorer pane go to New –> Maven Project Step 2 : Select the archetype as “maven-archetype-webapp” and click on next and giv…
运行Junit的时候报错, The project: XXXX which is referenced by the classpath, does not exist. 在Java Build Path这里找到错误的地方: Build path entry is missing: config 总结了下,如上所示,将提示错误的地方remove掉就行了,一般是在Java Build Path这里找到错误的地方,然后remove 个人工作笔记…
今天,学习Netty框架时遇到error:Description Resource Path Location Type:The project was not built since its build path is incomplete. Cannot find the class file for java.util.Map$Entry. Fix the build path then try building this project NettyTest Unknown Java Pr…
最近在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重新加上去,此时会…
在eclipse中新建了一个maven项目搭建Spring源码阅读环境,创建一个bean生产getter和setter方法的时候报错“the resource is not on the build path of a java project” 这种情况是因为在工程中找不到类: 解决办法:项目右键buildpath,然后将src下的文件都remove掉之后,重新add进来,然后关闭打开就可以了.…
在eclipse中,使用mavenimport了一个工程,但是在对某一个类进行F3/F4/ctrl+alt+H操作的时候报错:“the resource is not on the build path of a java project”. 这种情况也常常发生在重新打开eclipse时. 原因:在该工程的构建路径中找不到该类. 解决方法: 1. 找到buildpath下面的src下的文件remove掉,然后重新加上去,此时会更新所有目录. 2. 关闭该类,重新打开即可…