开发者

-server option for Launch4j?

开发者 https://www.devze.com 2022-12-11 14:02 出处:网络
I\'ve been poking around the launch4j website and can\'t seem to figure out how to set the -server program option, there\'s an old forum post indicating it might be a future option but no开发者_如何学

I've been poking around the launch4j website and can't seem to figure out how to set the -server program option, there's an old forum post indicating it might be a future option but no开发者_如何学Python further details are available.

Is it possible to run the JVM in server mode using Launch4j?


You can set it within <opt> node for <jre> in the configuration file


or in Maven plugin configuration:

<jre>
    <minVersion>1.8.0_101</minVersion>
    <runtimeBits>64</runtimeBits>
    <opts>
        <opt>-server</opt>
    </opts>
</jre>
0

精彩评论

暂无评论...
验证码 换一张
取 消