WELD-862 and Seam Cron
by Peter Royle
Hi,
I'm aiming to make a release of Seam Cron available within the next two weeks. Currently there is an outstanding issue (https://issues.jboss.org/browse/WELD-862) which prevents Cron from running properly with Weld. I have been able to carry on developing Cron by testing it against OpenWebBeans, but obviously if we are to release a Seam module it should work against Weld.
It would be nice if WELD-862 could be fixed as soon a possible so that all future versions will work well with Cron.
But more importantly I also probably need to do something special in Cron so that it will work with the version of Weld already deployed in JBoss AS and Glassfish, which will contain the bug. The workaround mentioned in the bug report is to deep copy the InvocationContext. I attempted to do this by serialising and unserialising the InvocationContext but couldn't due to UnserializableExceptions. Does anyone have any advice for me about how I might be able to work around this bug to support existing versions of Weld?
Cheers,
Pete R
4 days, 1 hour
Re: [weld-dev] [seam-dev] weld 2.0 / soldr 3.x not compatible
by Jozef Hartinger
On 06/06/2013 09:41 AM, Korbinian Bachl wrote:
> Sadly the weld 2 people didn't think about backwards compatibility in
> that position (why not just throw a big warning?);
Let's see what the specification says about the method:
"Throws:
java.lang.IllegalStateException - if called during application
initialization, before the AfterDeploymentValidation event is fired."
That answers your question. However, the CDI EG kind of anticipated
problems with legacy extensions not using the SPI properly and added the
following statement:
"The container is permitted to define a non-portable mode in which
getBeans(String) may be called from an observer of the
AfterBeanDiscovery event."
The non-portable mode is not in Weld yet but will be since 2.0.2.Final.
The easiest thing you can do is to repackage solder and disable the
org.jboss.solder.exception.control.extension.CatchExtension extension
(assuming you use Solder for other parts than Catch).
Jozef
12 years, 7 months