Set system properties in standalone-full.xml in wildfly 8.2

I added the system properties tag in standalone-full.xml, but did not work offline. However, if I add the same tag to domain.xml, it will work in domain mode.

<?xml version='1.0' encoding='UTF-8'?>

<server xmlns="urn:jboss:domain:2.2">

    <extensions>
    ....
    </extensions>

    <system-properties>
        <property name="java.util.Arrays.useLegacyMergeSort" value="true"/>
    </system-properties>
</server>

According to this article about jBoss General configuration concepts

System property values ​​can be set in several places in domain.xml, host.xml and standalone.xml.

Then what about standalone-full.xml?

I do not want to install it through the command line and not even in java code.

+4
source share
2 answers

, , . standalone.conf standalone.conf.bat JAVA_OPTS. , , , - java.util.Arrays.

+2

Wildfly 10 . , standalone-full.xml, .

, ? Wildfly standalone-full.xml - Wildfly: http://localhost:9990 > > (Wildfly , , xml, ). .

-1

All Articles