[jboss-user] [EJB] - Re: Deployment issues for EJBs in JBoss

jaikiran do-not-reply at jboss.com
Mon Nov 16 10:10:34 EST 2009


The logs that you posted in your latest reply did not have the error messages, so i am just guessing here.

Looking at the code, you seem to have a self injection (of PeopleSoftMonitorDaoLocal) which is not supported in JBoss EJB3 https://jira.jboss.org/jira/browse/EJBTHREE-1603:

  | public abstract class BasePeopleSoftDao extends AbstractDao {
  | 
  | 	... // self injection
  | 	@EJB
  | 	private PeopleSoftMonitorDaoLocal _monitorDao
  | ...
  | }
  | 
  | @Service
  | @Local(PeopleSoftMonitorDaoLocal.class)
  | public class PeopleSoftMonitorDaoEjb extends BasePeopleSoftDao implements
  | 		PeopleSoftMonitorDaoLocal {
  | ...
  | 
  | 

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

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



More information about the jboss-user mailing list