EJB3

  • This is a short tutorial for EJB 3 interceptors, and its purpose is to explain the concept of an interceptor and what is it good for.
  • The content of this tutorial is a shrinked version of a tutorial posted here: http://www.mastertheboss.com/en/jboss-server/177-ejb-interceptors-in-depth.html
  • which also contains code example.
  •  
  • EJB 3.0 interceptors allow you to add functionality to business methods of your session bean without modifying the methods' code.
  • An interceptor is a method that's executed before any of the bean's business methods are invoked.
  •   
  • How does it work ?
elad 03/08/2009 - 20:23

This simple application shows integration EJB3 with JCR (Apache Jackrabbit implementation)

Application allows manage (create/update/delete) simple text documents in JCR repository

Application has two layers - WEB and EJB

mark 11/09/2008 - 12:32

Learn how you can integrate the Spring Framework with EJB 3 components and to exploit Spring's declarative transaction features with Java EE applications. Finally we'll discover how Java EE application servers provide seamless management of Spring components from their JMX-enabled management consoles.

yanai 18/05/2008 - 21:43

I find the Spring 2.5 manual (chapter 18) unclear regarding the syntax that EJB3 clients need to declare in order to be able to call a remote SLSB EJB3.
Should we use a SimpleRemoteStatelessSessionProxyFactoryBean (like I was used to doing with EJB 2.1) ?

Or should we use the <jee:remote-slsb> tag ?

yanai 18/05/2008 - 21:39
Syndicate content