简体   繁体   中英

-server option for Launch4j?

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 further details are available.

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

您可以在配置文件 <jre> <opt>节点内进行设置

or in Maven plugin configuration:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM