【问题记录系列】the resource is not on the build path of a java project

在eclipse中新建了一个maven项目搭建Spring源码阅读环境,创建一个bean生产getter和setter方法的时候报错“the resource is not on the build path of a java project”

这种情况是因为在工程中找不到类;

解决办法:项目右键buildpath,然后将src下的文件都remove掉之后,重新add进来,然后关闭打开就可以了。

时间: 2024-12-28 17:47:37

【问题记录系列】the resource is not on the build path of a java project的相关文章

the resource is not on the build path of a java project错误

在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. 关闭该类,重新打开即可

the resource is not on the build path of a Java project报错解决

the resource is not on the build path of a Javaproject 这种问题一般都是没找到对应的源码,在对应工程上, 右键--->Properties--->Java Build Path 上找到Source选项卡,这个地方一般指的的是src目录,有的公司的项目中的src目录并不是直接在工程目录下,有的可能会放在比如WEB-INF(咱们这里就不讨论是否合理了),那么Source页签下的src目录就应该指向WEB-INF下的src了,此外,在Librar

the resource is not on the build path of a php project

打开工程里面的.project文件,确保里面的红色标记行都正确且存在,即可成功! <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>wmsadminapi</name> <comment></comment> <projects> </projects> <buildSpec>

Hadoop运维记录系列(二十四)

从这篇开始记录一下集群迁移的事情 早先因为机房没地方,就已经开始规划集群搬机房的事情,最近终于开始动手了,我会把这次不停机迁移的过程遇到的主要问题和矛盾以及各种解决方法记录下来. 集群规模说大不大,几百台,总容量30PB左右.Hadoop使用CDH 5.5.1加一些自定义patch的rpm打包编译版本. 总的方案是集群不停机,在两个机房之间架设专线,旧机房decommission,拉到新机房recommission.每天不能下线太多机器,要保证计算. 新机房提前架设90台机器,测试带宽.带宽的测

(图解)Description Resource Path Location Type Java compiler level does not match the version of

Description Resource Path Location Type Java compiler level does not match the version of project 编译问题,需要三处的jdk版本要保持一致,才能编译通过. 1.在项目上右键properties->project Facets->修改右侧的version  保持一致 2.window->preferences->java->Compiler->设置右侧的Compiler co

Description Resource Path Location Type Java compiler level does not match the version of the instal

解决办法 在项目上右键Properties->Project Facets,在打开的Project Facets页面中的Java下拉列表中,选择相应版本.有可能是java1.6 改成java6之类的 从别的地方导入一个项目的时候,经常会遇到eclipse/Myeclipse报Description  Resource Path Location Type Java compiler level does not match the version of the installed Java pr

Access restriction: The type &#39;Resource&#39; is not API (restriction on required library &#39;G:\JAVA\jdk\lib

问题: 打入JFrame时候,会报错:Access restriction: The type 'Resource' is not API (restriction on required library 'G:\JAVA\jdk\lib 解决方式: 项目属性preferences>java build path>把右侧[libraries中的JRE System Library]删除重新导入. Access restriction: The type 'Resource' is not AP

[记录]mscorlib recursive resource lookup bug解决方法

[Content]Expression: [mscorlib recursive resource lookup bug]Description: Infinite recursion during resource lookup within mscorlib. This may be a bug in mscorlib, or potentially in certain extensibility points such as assembly resolve events or Cult

Web API使用记录系列(四)OAuth授权与身份校验

呼,开干第四篇,基于OWIN搭建OAuth认证授权服务器与接口身份校验. OAuth包含授权码模式.密码模式.客户端模式和简化模式,这里我们文章记录的是密码模式和客户端模式. 目录 引用安装 授权处理-发放Token 用户名密码授权 客户端授权 身份校验-校验失败自定义返回信息 TestClient增加token获取 一.引用安装 除了Owin使用时安装的引用外,还需要安装以下引用 Microsoft.Owin.Security.OAuth Microsoft.Owin.Security.Coo