I have an EJB in Weblogic 10.3 that has en EJB interceptor defined for it like such:
@Stateless(name="MyEJB")
@Interceptors ({AuditInterceptor.class})
public class MyEJBImpl extends BaseEJB implements MyEJB
It appears as if the interceptor advice is only being applied to certain methods in the EJB. I am using the @AroundInvoke annotation in the interceptor. Any ideas as to why this would happen?