我一直在launch4j网站上转转,似乎不知道如何设置-server程序选项,有一个old forum post表明它可能是一个未来的选项,但没有进一步的细节可用。
可以使用Launch4j在服务器模式下运行JVM吗?
发布于 2009-11-18 12:15:25
您可以在<opt>节点中为the configuration file中的<jre>设置它
发布于 2016-12-27 21:28:47
或在Maven插件配置中:
<jre>
<minVersion>1.8.0_101</minVersion>
<runtimeBits>64</runtimeBits>
<opts>
<opt>-server</opt>
</opts>
</jre>https://stackoverflow.com/questions/1753565
复制相似问题