[jboss-dev-forums] [Design of POJO Server] - Re: Missing EAR/WAR Isolation
scott.stark@jboss.org
do-not-reply at jboss.com
Mon Mar 19 22:31:58 EDT 2007
I have further added the isolation and callByValue flags to the ear and ejb deployers:
| ear-deployer-beans.xml:
| <bean name="JBossAppParsingDeployer" class="org.jboss.deployment.JBossAppParsingDeployer">
| ...
| <!-- A flag indicating if ear deployments should have their own scoped
| class loader to isolate their classes from other deployments.
| -->
| <property name="isolated">true</property>
| <!-- A flag indicating if the ear components should have in VM call
| optimization disabled.
| -->
| <property name="callByValue">true</property>
| </bean>
|
| ejb-deployer-beans.xml:
| <bean name="EJB2xDeployer" class="org.jboss.ejb.deployers.EjbDeployer">
|
| <!-- A flag indicating if the ear components should have in VM call
| optimization disabled.
| -->
| <property name="callByValue">false</property>
| </bean>
|
Your change would pickup deployments with explicit jboss-app.xml isolation, now apps without any isolation config will pickup the ear default as well.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4029595#4029595
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4029595
More information about the jboss-dev-forums
mailing list