is this possible somehow? Following scenario:

  • statelesse local EJB with name A
  • singleton startup EJB with name B
  • B contains a reference to A

I tried but my application server (WAS) fails on application startup with the error that A was not found. The console log also makes clear that A was not started at the moment the B is loaded but some other stateless EJBs are started before B. Making A also a singleton EJB and letting B depond on A via annotation @DependsOn({"A"}) produced an error, too, stating that dependent bean A was not found. Using A in a web module works fine.

Any ideas what' I do wrong? Thx for any help! Steffen Harbich

link|improve this question
In GlassFish I have the same error. It disappears if you remove the local interface from A. Why do you need the local interface? It seems that shouldn't be necessary with EJB 3.1 – perissf Jan 6 at 17:06
1  
This should work. Is A in the same module/application as B or separate? If separate, is the module of A configured to start before the module of B (initialize-in-order in application.xml, or using module starting weights in the admin console)? – bkail Jan 6 at 19:35
Ok, i'll try to remove local interface. – Raubvogel87 Jan 9 at 7:38
A is in another ejb module than B but within same application. Any ideas, how to set starting weights in Websphere? – Raubvogel87 Jan 9 at 7:39
N1! The startup order did it. If you post this as answer then I can mark it as answer. Thanks a lot! – Raubvogel87 Jan 9 at 8:30
show 2 more comments
feedback

1 Answer

up vote 1 down vote accepted

If A is in a different module/application as B, then you need to ensure that the module of A is configured to start before the module of B. You can either use initialize-in-order in application.xml, or use module starting weights in the admin console.

link|improve this answer
Thanks! That helped. – Raubvogel87 Jan 10 at 7:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.