The moose likes EJB Certification (SCBCD/OCPJBCD) and the fly likes EJB 3.0 Interceptors Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Professional Certification » EJB Certification (SCBCD/OCPJBCD)
Reply Bookmark "EJB 3.0 Interceptors" Watch "EJB 3.0 Interceptors" New topic
Author

EJB 3.0 Interceptors

K Hein
Greenhorn

Joined: Jul 02, 2008
Posts: 10
Hi everyone,

I have some doubts regarding EJB 3.0 Interceptors.

First, according to the EJB 3.0 Core specification, lifecycle call back methods can only throw System Exception. How about @AroundInvoke Interceptor methods? Can a method with @AroundInvoke throw Application Exception?

Second, I don't quite understand the below statement from EJB 3.0 specification.

The deployment descriptor may be used to augment the interceptors and interceptor
methods defined by means of annotations. When the deployment descriptor is used to augment
the interceptors specified in annotations, the interceptor methods specified in the deployment descriptor
will be invoked after those specified in annotations, according to the ordering specified in sections
12.3.1 and 12.4.1.


Does it mean that interceptors specified in the deployment descriptor are always invoked after the interceptors defined by annotations?

Thanks in advance.

Regards,

Kyi Hein
amit punekar
Ranch Hand

Joined: May 14, 2004
Posts: 468
Hi there,

Does it mean that interceptors specified in the deployment descriptor are always invoked after the interceptors defined by annotations?


Right, that's correct.

Regarding @AroundInvoke, if we are intercepting the business method then we can throw ApplicationException like Business methods.

Regards,
Amit
 
 
subject: EJB 3.0 Interceptors
 
Threads others viewed
Query rgd interceptor invocation order
Doubts - EJB 3.0
question about interceptor methods invocation order
doubt in Mikalai notes in overiding deployment descriptor
Business method interceptor methods (AroundInvoke methods) invocation order
MyEclipse, The Clear Choice