解决办法,如下
先确保eclipse中的JDK配置成功
windows->preferences在eclipse的根目录找到eclipse.ini配置文件
添加-vm配置信息eclipse.ini中文件如下
具体代码如下:
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120522-1813
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
***-vm
D:\\Program Files\\Java\\jdk1.7.0_79\\bin***
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Dhelp.lucene.tokenizer=standard
-Xms256m
-Xmx512m
-XX:PermSize=256M
-XX:MaxPermSize=256M
- 注意:
注意事项1:不能有空格,否则要用~1代替,如: ‘Program Files’ is ‘Progra~1′.
注意事项2:要分为2行写。-vm第一行,路径在第二行
**-vm
D:\Program Files\Java\jdk1.7.0_79\bin**
-vm要在-vmargs前面。Notice : ‘-vm’ must be “-vmargs” above