使用 Java Web Start/JNLP 启用 JVM 选项
我正在创建一个 Web Start 应用程序,它将受益于一些较新的 JVM 选项(特别是逃逸分析、G1 垃圾收集器等)。
同时,我希望该应用程序能够在不支持这些选项的旧版 JVM 上正常工作选项。
有没有一个好的方法来实现这一目标?
I'm creating a Web Start application which would benefit from some of the newer JVM options (especially escape analysis, G1 garbage collector etc.)
At the same time, I would like the application to work gracefully on older JVMs that do not support these options.
Is there a good way of achieving this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Thorbjørn 提到的,Java 6 u10 允许在 JNLP 中使用多个
j2se
元素。 JNLP 文件语法< /strong> 最新 Java Web Start 开发人员指南 的resources
部分表示多个j2se
元素,每个元素都有java-vm-args
属性可以指定最优先出现的属性。例如:As Thorbjørn mentioned, Java 6 u10 allows multiple
j2se
elements in JNLP. The JNLP File Syntaxresources
section of the latest Java Web Start Developer's Guide, indicates that multiplej2se
elements, each withjava-vm-args
attributes can be specified with the most preferred occurring first. For example: