interceptor « EJB « Spring Q&A





1. Am I allowed to declare a lifecycle interceptor on an interceptor?    stackoverflow.com

I have my business bean defined thus:

@Local
@Interceptors(BusinessInterceptor.class})
public class MyBean implements SomeBean { ... }
And then I want my BusinessInterceptor to be configured with Spring's SpringBeanAutowiringInterceptor:
@Interceptors(SpringBeanAutowiringInterceptor.class)
public class BusinessInterceptor {
    ...

2. Spring eqvivalent for EJB3 Interceptors?    forum.springsource.org

Spring eqvivalent for EJB3 Interceptors? First, I'm a newbie at Spring so please bare with me. We have en application written in EJB3 that we want to rewrite with Spring (and ...

3. How to add Interceptor to EJB3-SessionBean    forum.springsource.org

How to add Interceptor to EJB3-SessionBean Hi, I have a Bean for accessing a EJB3-SessionBean: Code:

4. EJB3 interceptor cannot bootstrap context    forum.springsource.org

EJB3 interceptor cannot bootstrap context Hi. I have a annotation-based EJB3 set up with Spring autowiring : Code: @Stateless(name = "WiringExampleFacade") @Remote({WiringExample.class}) @Local({WiringExample.class}) @Interceptors(SpringBeanAutowiringInterceptor.class) public class WiringExampleFacadeEJB implements WiringExample { // ...

5. EJB interceptor or Spring AOP    coderanch.com