• eclipse 项目资源与 java 编译器级别不致总是;说明资源路径位置类型Java编译器级别不匹配t


    问题:Description Resource Path Location Type Java compiler level does not match t

    今天在自己项目中整合HBase API的时候遇到了这个问题,想了半天也不知道自己干了什么出现了这个问题。去查阅相关资料终于把这个小红叉给去掉了,在此记录一下

    Java 编译器级别与安装的 Java项目构面的版本不匹配。

      怎么解决?网上给了好几种解决方案。

    1.右键项目,选择Properties,再选择Project facets,把Java版本改成你电脑上的Java版本(JDK版本)。

    2.选择Windows->Preferences->java->Compiler,然后把JDK版本改成你的Java版本。

    3.右键项目,选择build path,点击comfigure build path,然后在library中把已有的JRE library remove掉,然后Add library,选择你电脑上安装的JRE版本。

    好吧,博主遇到一件尴尬的事情就是这些方法都没有用。看见那个红色的XX真的很心烦。

    但是问题总是有人已经解决了的。

    最后的解决方法是找到项目位置。打开本项目的.setting下org.eclipse.jdt.core.prefs文件,把文件内的版本修改成与你的电脑一致。
     

        eclipse.preferences.version=1
        org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
        org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
        org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
        org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
        org.eclipse.jdt.core.compiler.compliance=1.7
        org.eclipse.jdt.core.compiler.debug.lineNumber=generate
        org.eclipse.jdt.core.compiler.debug.localVariable=generate
        org.eclipse.jdt.core.compiler.debug.sourceFile=generate
        org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
        org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
        org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
        org.eclipse.jdt.core.compiler.source=1.7
    ————————————————
    版权声明:本文为CSDN博主「一朝风月S」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/weixin_37624828/article/details/83898799

    做产品的程序,才是好的程序员!
  • 相关阅读:
    openfalcon源码分析之transfer
    openfalcon源码分析之hbs
    openfalcon源码分析之Judge
    kong插件官方文档翻译
    Lua 学习
    GO语言heap剖析及利用heap实现优先级队列
    GO语言list剖析
    算法之python创建链表实现cache
    杂项之rabbitmq
    杂项之python利用pycrypto实现RSA
  • 原文地址:https://www.cnblogs.com/asplover/p/11735727.html
Copyright © 2020-2023  润新知