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
Given an interceptor with two bindings and a bean with only one of them, ArC currently triggers the interceptor for methods on that bean. This is not what the specification expects, it should only trigger if bean has both bindings.
The text was updated successfully, but these errors were encountered:
And looking at that doc, note that the resulting method always has both annotations. In interceptor spec, you combine annotations from class-level with those on method-level for resulting set of bindings. Therefore, with 2 bindings you have 4 combination of declaring them - either both bindings on class/method level or one binding on class, the other on method.
Given an interceptor with two bindings and a bean with only one of them, ArC currently triggers the interceptor for methods on that bean. This is not what the specification expects, it should only trigger if bean has both bindings.
The text was updated successfully, but these errors were encountered: