Re: Issue TOMEE-2063 not solved in TomEE 7.0.4?

2017-11-09 Thread Frankie
You are right! I mixed up the constant names and used LIBRARY_BEFORE (1000) instead of PLATFORM_BEFORE (0), so I expected 1200 ... -- Sent from: http://tomee-openejb.979440.n4.nabble.com/TomEE-Dev-f982480.html

Re: Issue TOMEE-2063 not solved in TomEE 7.0.4?

2017-11-09 Thread Svetlin Zarev
Interceptor.Priority.PLATFORM_BEFORE has a value of 0. It's also a static and final [1] which makes it a "compile time constant expression" [2] So according to LJS 13.4.9-2 [3] the compiled annotation should not have any reference to Interceptor.Priority.PLATFORM_BEFORE. So 200 + 0 == 200, and

Re: Issue TOMEE-2063 not solved in TomEE 7.0.4?

2017-11-09 Thread Frankie
Yes, I saw that in the git repo, but when I download TomEE 7.0.4 PluME, the fix seems not to be included, since my built-in check using reflection says so ... Decompiled RequiredInterceptor.class: *@Priority(200)* instead of: *@Priority(Interceptor.Priority.PLATFORM_BEFORE + 200)* -- Sent

Re: Issue TOMEE-2063 not solved in TomEE 7.0.4?

2017-11-09 Thread Svetlin Zarev
Hi, The fix was pushed on 13 Jun [1] , so it is available in 7.0.4 [1] https://github.com/apache/tomee/commit/29c7594baff0161f358f1e6585fe36730d14f43c Kind regards, Svetlin 2017-11-09 14:34 GMT+02:00 Frankie : > Hello, > > it seems, the fix for the resolved Issue

Issue TOMEE-2063 not solved in TomEE 7.0.4?

2017-11-09 Thread Frankie
Hello, it seems, the fix for the resolved Issue TOMEE-2063 ist not included in TomEE 7.0.4? Did I misunderstand something? Thank you Best regards Frankie -- Sent from: http://tomee-openejb.979440.n4.nabble.com/TomEE-Dev-f982480.html