我的应用程序需要在mac os系统中使用bundle jre。我在下面更改了Info.plist,试图指向我从install4j捆绑的jre。但是当我运行应用程序时,系统仍会弹出一个对话框给我。 "打开serviceAgent'您需要安装旧版Java SE 6运行时"。我在Info.plist中添加了JVM属性。 Info.plist有什么问题吗?非常感谢。 TYKI
<key>Java</key>
<dict>
<key>MainClass</key>
<string>com.tesst.service.ServiceManagerAgent</string>
<key>StartOnMainThread</key>
<true/>
<key>JVMVersion</key>
<string>1.8+</string>
<key>JVMRuntime</key>
<string>$APP_PACKAGE/../.install4j/jre.bundle</string>**
<key>ClassPath</key>
<string>$APP_PACKAGE/../lib/spring-web-3.0.1.RELEASE.jar/string>
<key>Properties</key>
<dict>
<key>log4j.configuration</key>
<string>file:$APP_PACKAGE/../conf/log4j.properties</string>
</dict>
</dict>
<key>LSUIElement</key>
<string>1</string>
</dict>