Tuesday, June 15, 2010

EJB3 in Action

EJB Types
Session Beans
-Stateless
   @Stateless
-Stateful
   @Stateful
   Interface: @Remote, @Local, @WebService
   @PostConstruct, @PostActiviate, @PrePassivate, @PreDestroy,
Messaging Driven Bean (MDBs)

@Resource(name="jdbc/actionBazaarDB")


Advanced EJB Concepts

- DI and JNDI
- interceptors
   @Interceptors(ActionBazaarLogger.class)
   @AroundInvoke
- timer service
   @Resource TimerService timerService;
   @Timeout

The Java EE 5 Tutorial
http://download.oracle.com/javaee/5/tutorial/doc/gfirp.html

No comments:

Post a Comment