-
1. Re: WELD 2.2.5.Final broke deploy and arquillian test
mkouba Sep 24, 2014 3:02 PM (in response to wangliyu)Hi,
this is intentional and will not change back. At last Weld servlet container integration follows the spec. See also my blog post - Weld 2.2.5 - servlet container integration done correctly, and Weld documentation - Bean Archive Isolation.
-
2. Re: WELD 2.2.5.Final broke deploy and arquillian test
wangliyu Sep 25, 2014 10:50 AM (in response to mkouba)The behavior changes caused the @Alternative broke, I have a jar that contain the @Producer methods, and in arquillian test, I have to use @Alternative to provide different implementation, the @Alternative sit in different jar, then when I run the arquillian test, it broken, basiclly the @Alternative is never alternative, it still try to use the original @Producer methods. is there any work around of that other than flat deployment?
-
3. Re: WELD 2.2.5.Final broke deploy and arquillian test
wangliyu Sep 25, 2014 11:03 AM (in response to mkouba)Never mind, I figured, so I have to @Priority to @Alternative, @Interceptor to enable the global.