[jboss-user] [EJB 3.0] - Injecting EJB2 entity homes into EJB3 beans

gcoleman do-not-reply at jboss.com
Wed Apr 2 03:39:14 EDT 2008


Should I be able to inject EJB2 homes into EJB3 beans?. This used to work on 5.0.0.Beta4 but doesn't with the latest 5.0.0 HEAD build - I'm trying to upgrade due to a problem with JBossWebRealm (fixed in r69776).

I've got an EJB3 SLSB declared using annotations. I'm injecting an EJB2 entity home into it using ejb-jar.xml:


  | @Stateless(name = "TaskManager")
  | @Local(TaskManager.class)
  | @TransactionAttribute(REQUIRED)
  | public class TaskManagerBean implements TaskManager
  | {
  | 	protected ScheduledTaskHome scheduledTaskHome;
  | ...
  | }
  | 


  | <session>
  | 	<ejb-name>TaskManager</ejb-name>
  | 	<ejb-local-ref>
  | 		<ejb-ref-name>ejb/ScheduledTaskHome</ejb-ref-name>
  | 		<ejb-ref-type>Entity</ejb-ref-type>
  | 		<local-home>util.timer.ScheduledTaskHome</local-home>
  | 		<local>util.timer.ScheduledTask</local>
  | 		<ejb-link>ScheduledTask</ejb-link>
  | 		<injection-target>
  | 			<injection-target-class>util.timer.TaskManagerBean</injection-target-class>
  | 			<injection-target-name>scheduledTaskHome</injection-target-name>
  | 		</injection-target>
  | 	</ejb-local-ref>
  | </session>
  | 

The ScheduledTask entity deployed without any errors. The problem appears to be the SLSB thinks that the entity dependency is EJB3:


  | 08:24:41,721 ERROR [ProfileServiceBootstrap] [main] Failed to load profile: Summary of incomplete de
  | ployments (SEE PREVIOUS ERRORS FOR DETAILS):
  | 
  | *** CONTEXTS MISSING DEPENDENCIES: Name -> Dependency{Required State:Actual State}
  | 
  | jboss.j2ee:ear=app.ear,jar=server-utils-ejbs.jar,name=TaskManager,service=EJB3
  |  -> <UNKNOWN>{Described:** UNRESOLVED Demands 'jboss.ejb:service=EJBTimerService **}
  |  -> <UNKNOWN>{Described:** UNRESOLVED Demands 'jboss.j2ee:ear=app.ear,name=ScheduledTask,servic
  | e=EJB3,* **}
  | 

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

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



More information about the jboss-user mailing list