[jboss-user] [EJB 3.0] - Re: Quartz Job unable to access deployed EJB (JBoss AS 5.01)

RichardTaylor do-not-reply at jboss.com
Tue Jun 16 17:55:16 EDT 2009


May or may not work for others, but I was just able to work around this issue by turning off EAR classloading isolation (Jboss 5.1.0 JDK6).  After setting the following property to false, the quartz resource adapter can now load my ejb and that ejb's dependencies are properly injected.  There are obviously other classloading implications, but if it's an option...

in jboss/server/all/deployers/ear-deployer-jboss.beans.xml:
<bean name="EARClassLoaderDeployer" class="org.jboss.deployment.EarClassLoaderDeployer">
  |       <property name="isolated">false</property>
  |    </bean>

View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238049#4238049

Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4238049



More information about the jboss-user mailing list