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.
source
share