From section 2.2 Interceptor Life Cycle: "The AroundConstruct lifecycle callback is invoked after the dependency injection has been completed on instances of all interceptor classes associated with the target class."
does it involve only AroundConstruct interceptors? (I suppose so.)
does it involve only interceptors associated with the target class or also the interceptors associated with the constructor?
(e.g. FooInterceptor in the following case: @Inject @Interceptors(FooInterceptor.class) public Foo() {})
From section 2.2 Interceptor Life Cycle: "The AroundConstruct lifecycle callback is invoked after the dependency injection has been completed on instances of all interceptor classes associated with the target class."
Affected Versions
[1.2]