is it possible to access Wildfly properties (defined in standalone.xml) through JNDI? Like:
<system-properties>
<property name="MY_PROPERTY" value="some value"/>
...
</system-properties>
and read it in java:
@Resource(lookup = "java:comp/env/MY_PROPERTY")
private String property;