我在eclipse中运行我的java项目后得到以下警告。
**Description Resource Path Location Type Build path specifies execution environment CDC-1.1/Foundation-1.1. There are no JREs installed in the work space that are strictly compatible with this environment**.
答案 0 :(得分:15)
打开项目的属性,然后选择Java Build Path
,查看Libraries
标签。
选择JRE System Library
条目,然后点击Edit...
按钮。从“编辑库”对话框的列表中选择一个更明智的执行环境或JRE。
答案 1 :(得分:1)
就我而言,我刚刚编辑了pom.xml的Java版本,效果很好
之前:
<properties>
<java.version>1.8</java.version>
</properties>
之后:
<properties>
<java.version>11</java.version>
</properties>