Jozef Hartinger resolved Bug WELD-1346 as Rejected

Agreed, the @AroundInvoke method only intercepts business method calls. If you want to intercept the initialize() method, you should define an interceptor method for lifecycle event callback, e.g.:

@MyInterceptorBinding
@Interceptor
public class MyInterceptor {
@PostConstruct
public void postConstruct(InvocationContext ctx)

{ ctx.proceed(); }
Change By: Jozef Hartinger (20/Mar/13 7:43 AM)
Status: Open Resolved
Fix Version/s: 2.0.0.CR2
Resolution: Rejected
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
_______________________________________________
weld-issues mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/weld-issues

Reply via email to