Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 29th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. When is EJB injected
  2. @EJB
  3. private EJBType1 ejb1;
  4. @EJB
  5. private EJBType1 ejb1;
  6.  
  7. @WebMethod
  8. public String readDataFromType1() {
  9.    ejb1.call1();
  10. }
  11.  
  12. @WebMethod
  13. public String readDataFromType2() {
  14.    ejb2.call2();
  15. }