We use Wildfly 9.0.2 server and we need to use custom property resolver to inject values to system-properties in standalone.xml, to make something like:
<system-properties>
<property name="my-property" value="${custom:property-value-key}" />
</system-properties>
Is there mechanism similar to the one provided by Tomcat (org.apache.tomcat.util.digester.PROPERTY_SOURCE property)?
Thank you!