Re: Interceptor discovery

2017-07-23 Thread Romain Manni-Bucau
Thanks Mark Created OWB-1204 Romain Manni-Bucau @rmannibucau | Blog | Old Blog | Github | LinkedIn | JavaEE

Re: Interceptor discovery

2017-07-23 Thread Mark Struberg
https://docs.jboss.org/cdi/spec/1.2/cdi-spec.html#bean_defining_annotations Lg, Strub > Am 23.07.2017 um 09:20 schrieb Romain Manni-Bucau : > > Can one of you list the part of the spec stating it for this thread to be > self contained please? > > Who takes the fix? Can

Re: Interceptor discovery

2017-07-23 Thread Romain Manni-Bucau
Can one of you list the part of the spec stating it for this thread to be self contained please? Who takes the fix? Can have a look end of next week I guess if it helps. Le 22 juil. 2017 23:37, "Mark Struberg" a écrit : > John is right. interceptor and Decorator are

Re: Interceptor discovery

2017-07-22 Thread Mark Struberg
John is right. interceptor and Decorator are bean defining annotations. John, can you plz file a ticket! Txs and LieGrue, Strub > Am 21.07.2017 um 21:37 schrieb Romain Manni-Bucau : > > Conflicts with annotated part i think. Priority doesnt enable a bean by > itself. >

Re: Interceptor discovery

2017-07-21 Thread Romain Manni-Bucau
Conflicts with annotated part i think. Priority doesnt enable a bean by itself. Le 21 juil. 2017 21:31, "John D. Ament" a écrit : > The interceptor is intended to be enabled just because of the @Priority > annotation. Nothing else should be required. Please review 9.4

Re: Interceptor discovery

2017-07-21 Thread John D. Ament
The interceptor is intended to be enabled just because of the @Priority annotation. Nothing else should be required. Please review 9.4 of the spec http://docs.jboss.org/cdi/spec/2.0/cdi-spec.html#enabled_interceptors John On Fri, Jul 21, 2017 at 3:22 PM Romain Manni-Bucau

Re: Interceptor discovery

2017-07-21 Thread Romain Manni-Bucau
Misses @Dependent yes. Le 21 juil. 2017 19:35, "John D. Ament" a écrit : I have an interceptor defined as: @Interceptor @LoggedIn @Priority(Interceptor.Priority.APPLICATION + 100) public class LoggedInInterceptor { and a beans.xml with This interceptor isn't being

Interceptor discovery

2017-07-21 Thread John D. Ament
I have an interceptor defined as: @Interceptor @LoggedIn @Priority(Interceptor.Priority.APPLICATION + 100) public class LoggedInInterceptor { and a beans.xml with This interceptor isn't being discovered. It is discovered when beans.xml is an empty file. This same interceptor is discovered