0
@EJB SomeEJBLocal audit ;

I am wondering if this Annotation @EJB works on all App Servers ? (Assuming that the App Servers do Implement J2EE spec) or does it work only on GlassFish AppServer ?

skaffman
  • 398,947
  • 96
  • 818
  • 769
BlueSky
  • 1,423
  • 3
  • 12
  • 9

1 Answers1

5

@EJB is part of the JavaEE 5 spec. Any JavaEE-5-compliant application server will support it, no exceptions.

skaffman
  • 398,947
  • 96
  • 818
  • 769