]
Brad Maxwell commented on WFLY-9551:
------------------------------------
Yes this is a feature request, I do not see it in WF19
Ability to add Properties binding in Naming subsystem
-----------------------------------------------------
Key: WFLY-9551
URL:
https://issues.redhat.com/browse/WFLY-9551
Project: WildFly
Issue Type: Feature Request
Components: Naming
Affects Versions: 11.0.0.Final, 19.0.0.Final
Reporter: Brad Maxwell
Priority: Minor
Something like this whee multiple properties can be specified and then looked up as a
java.util.Properties object:
{code}
Properties properties = (Properties) new
InitialContext().lookup("java:global/myProperties");
{code}
{code}
<subsystem xmlns="urn:jboss:domain:naming:2.0">
<bindings>
<properties name="java:global/myProperties">
<property name="environment" value="production"/>
<property name="size" value="100"/>
...
</properties>
</bindings>
</subsystem>
{code}