Hi,
Hi!
For EJBs there is a 'self-interception' defined. E.g.
@Stateless
public class MyEjb {
public String someBusinessMehod() {
returns "Schneewittchen";
}
@AroundInvoke
public Object interceptMe(InvocationContext ic) throws Exception {
System.out.println("got intercepted");
return ic.proceed();
}
}
But should the same trick also work for CDI beans when replacing @Stateless with @SessionScoped ?
LieGrue,
strub
_______________________________________________
cdi-dev mailing list
cdi-dev@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/cdi-dev