In EJB 2.0 we have Home interface, and Component interface. But in EJB 3.0 we don't have those interfaces(instead we have annotations). My doubt is, if we don't have those interface, then who is doing their job in EJB 3.0, and how the implementation and working (calling and callee) procedure changed??

link|improve this question

64% accept rate
2  
The EJB Container does the injection. – The Elite Gentleman Jan 30 at 13:54
feedback

1 Answer

up vote 5 down vote accepted

In EJB 3 you don't need the home interface anymore, as the container is directly injecting the bean when you use the @EJB annotation

@EJB
MyLocalInterface bean1;

@EJB
OtherRemoteInterface bean2;

String foo = bean1.doSomething();
String bar = bean2.soSomethingElse();
link|improve this answer
Do we have the stub and skeleton in EJB 3.0?? – Surendhar Jan 31 at 5:03
feedback

Your Answer

 
or
required, but never shown

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