天天看點

修改eclipse啟動時eclipse使用的jre

eclipse在啟動的時候,和環境變量中的jdk不相容,可以單獨制定eclipse運作的jre。

方法:

在eclipse的配置檔案裡增加-vm參數即可。

打開eclipse目錄下的eclipse.ini配置檔案,增加-vm配置,需要注意的是該參數要加在-vmargs之前

 eclipse.ini配置檔案:

 -startup

plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar

--launcher.library

plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140603-1326

-product

org.eclipse.epp.package.jee.product

--launcher.defaultAction

openFile

--launcher.XXMaxPermSize

256M

-showsplash

org.eclipse.platform

256m

--launcher.appendVmargs

-vm

D:/partA/Java64bit/jre7/bin/server/jvm.dll

-vmargs

-Dosgi.requiredJavaVersion=1.6

-Xms40m

-Xmx512m

繼續閱讀