Created
May 14, 2013 17:03
-
-
Save guaxinim/5577618 to your computer and use it in GitHub Desktop.
Dynamic JNDI Bindings on EAP 6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
JNDI Bindings lookup dinamico: | |
<subsystem xmlns="urn:jboss:domain:naming:1.1" > | |
<bindings> | |
<simple name="java:global/a" value="100" type="int" /> | |
<object-factory name="java:global/b" module="com.acme" class="org.acme.MyObjectFactory" /> | |
<lookup name="java:global/c" lookup="java:global/b" /> | |
</bindings> | |
</subsystem> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment