[jboss-cvs] JBossAS SVN: r107254 - branches/JBPAPP_5_0_JBPAPP-4745/server/src/main/org/jboss/ejb/deployers.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Aug 2 01:31:20 EDT 2010


Author: jiwils
Date: 2010-08-02 01:31:20 -0400 (Mon, 02 Aug 2010)
New Revision: 107254

Modified:
   branches/JBPAPP_5_0_JBPAPP-4745/server/src/main/org/jboss/ejb/deployers/EjbDeployer.java
Log:
Fix for JBPAPP-4745.  Resolve EJB dependancy on another EJB in the same EJB JAR file.

Modified: branches/JBPAPP_5_0_JBPAPP-4745/server/src/main/org/jboss/ejb/deployers/EjbDeployer.java
===================================================================
--- branches/JBPAPP_5_0_JBPAPP-4745/server/src/main/org/jboss/ejb/deployers/EjbDeployer.java	2010-08-02 05:29:58 UTC (rev 107253)
+++ branches/JBPAPP_5_0_JBPAPP-4745/server/src/main/org/jboss/ejb/deployers/EjbDeployer.java	2010-08-02 05:31:20 UTC (rev 107254)
@@ -429,7 +429,7 @@
       /* TODO: this is too coarse as bean to bean depends are being pulled up to the module level
          and an ejb module cannot depend on the beans it creates. The ejb deployer needs to
          be refactored into a component based deployer.
-      */
+         JBAS-8032
       try
       {
          for(String depend : beanDepends)
@@ -444,6 +444,7 @@
       {
          throw new DeploymentException(e);
       }
+      */
       ejbModule.setDependencies(dependencies);
 
       unit.addAttachment("EjbServiceMetaData", ejbModule, ServiceMetaData.class);



More information about the jboss-cvs-commits mailing list