以下是我的項目結構。eclipse項目中junit和source的兩個獨立JRE
-project
-sources
-my.package
-MyClass.java
-test
-my.package
-MyClassTest.java
我想爲我的源使用小於1.5的JDK版本。
因爲我的junit測試類需要最新的JDK。
有沒有可能爲同一個項目使用兩個不同的JDK。
Current solution: I can configure latest JDK for the project and can compile using different targets one for source and one for test. javac -target.
這是正確的方法嗎?或請建議任何正確的解決方案。
在此先感謝。
爲什麼你要使用Java 1.4 - 你有什麼具體的原因?可能有一個更簡單的方法來實現你所需要的。 – Robert
@Robert要使用自動完成功能,如果我設置爲1.5或6 eclipse/netbeans將生成與較低jdk版本不兼容的代碼。 –