在構建路徑中獲取JRE系統庫未綁定錯誤,嘗試了來自以下鏈接的所有建議,但未奏效。我有jdk 1.6.0_29,我也嘗試安裝其他版本,但沒有幫助。在構建路徑中獲取JRE系統庫未綁定錯誤
JRE System Library [WebSphere v6.1 JRE] (unbound) Eclipse error: Unbound classpath container Java - Unbounded classpath container Websphere V6 JRE Struggling to update JRE dependencies within Maven and Eclipse Unbound classpath container in Eclipse unbound class path container error in eclipse? Java Web Project Build Error unbound class path container error in eclipse?
Maven的編譯器的版本是這樣的:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>${project.build.sourceEncoding}</encoding>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
我試圖從目錄外運行日食,我得到這個警告: 「工作區定義了一個不包含有效jre的虛擬機」。然而,我已經安裝了必要的jdk並檢查了版本 – user1328572
該錯誤表明您已經在eclipse中定義了一個虛擬機配置,該配置沒有與其關聯的正確配置的JRE。首先查看您的Java VM是否配置正確,並確保它指向正確的二進制文件。 – DanielBarbarian
Yoni的答案通過此鏈接解決了我的問題 - http://stackoverflow.com/questions/3542051/eclipse-frustration-with-java-1-7-unbound-library# –