Thread WELD 2.2 branch no longer working with JDK6
WELD 2.2 branch no longer working with JDK6Hi, I tried upgrading an old JDK6-bound component from WELD 2.1.2.Final to WELD 2.2.15.Final, but the deployment failed with this error:
Caused by: java.lang.NoClassDefFoundError: java/util/Objects
&...
WELD-001408: Unsatisfied dependenciesHi, I'm having trouble using dependency injection (with CDI/Weld) within libraries used in a war when deploying on Glassfish 4.1-b15. I have two libraries, say: WEB-INF/lib/library1.jar WEB-INF/lib/library2.jar libra...
Thread Easier access to InjectionPoint qualifiers?
Easier access to InjectionPoint qualifiers?Hi, It appears that the only reliable way of analysing all of the qualifiers on a given injection point is via the javax.enterprise.inject.spi.InjectionPoint.getQualifiers() method, because annotation literals...
Thread Problem of inheritance for initializer(injecting method)
Problem of inheritance for initializer(injecting method)I'm facing an issue like this: What is the member type in @Override method of sub-class for example:
public interface Dao {}
@Typed(A.class)
public class A implements Dao {}
@Typed(B.class)
public class B extends A...
Thread NoSuchMethodError in Guava class when using weld + testfx
NoSuchMethodError in Guava class when using weld + testfxHi, I'm developping a JavaFX app based on a framework called "mvvmfx" [1]. This framework uses CDI (Weld ) for dependency injection. For GUI tests, I wanted to use the testfx library [2], which provides a flue...
Thread What is the correct usage of WELD's built-in HttpRequestContext bean?
What is the correct usage of WELD's built-in HttpRequestContext bean?Hi, I have implemented a CDI bean with a @Produces method that extracts query parameter "traceId" from any/every HTTP request. This @Produces method is also likely to be called outside of request scope (by bea...
how to inject EntityManager in CDI(weld)?In my project , i use JSF+JPA+CDI+WildFly 8.2, in the persistence layer, i hava a BasicDao , like this:
public class BasicDao<M, K>{
private org.jboss.logging.Logger logger = org.jboss.logging.Logg...
Thread Famous error WELD-001408 Unsatisfied dependencies
Famous error WELD-001408 Unsatisfied dependenciesHi for all !! I'm developing an app with maven + weld. And I don't inject bean on my Servlet. Below follows the exception: org.jboss.weld.exceptions.DeploymentException: WELD-001408 Unsatisfied dependen...
Thread Feature Request, support onejar-maven-plugin
Feature Request, support onejar-maven-pluginHi, I am using weld-se in a standalone SE app. I am using onejar-maven-plugin to build an executable jar with all the dependencies contained in the jar. The plugin basically packages jars inside jars and then has ...
WildFly 10 and Weld 3I just took Weld's patchfile for WildFly 9, edited patch.xml (inside the zip file) for WildFly 10, and upgraded WildFly 10.0.0.Alpha1 to Weld 3.0.0.Alpha9. All my tests are working fine. Therefore, I'm wonderi...
Weld 3.0.0.Alpha9This release contains various enhancements around BeanBuilder and Weld SE builder APIs. See https://issues.jboss.org/secure/ReleaseNote.jspa?projectId=12310891&version=12326947 for details. Download: http://weld....
Thread Async call - RequestScoped not active exception
Async call - RequestScoped not active exceptionI am trying to run cts with async tests. But I hit When running CTS the test: org.jboss.cdi.tck.tests.context.request.event.async.RequestScopeEventAsyncTest Methods: testEventsFired The following exception ...