You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2019. It is now read-only.
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() {})