Weld is the reference implementation (RI) for JSR-299: Java Contexts and Dependency Injection for the Java EE platform (CDI)
1
vote
1answer
29 views
Weld CDI : Using @Alternative @Singleton
I have a Producers class annotated with @Singleton, containing a method annotated with @Produces.
I want to write unit test using an alternative of this method, but can't manage to do it. here's a ...
2
votes
1answer
23 views
What is the difference between @Inject and @PersistenceContext?
In a project using JPA, I commonly use
@Inject EntityManager em;
in order to obtain such an object. I saw that many code snippets in the web instead use:
@PersistenceContext EntityManager em;
...
0
votes
1answer
18 views
Is Seam3 and Weld CDI the same thing?
may be it seems a foolish question but I really confused , is Seam3 and Weld CDI the same things? I am reading some posts which refers to "CDI (Weld) / seam3", should I consider them as the same ...
0
votes
0answers
31 views
startup calss in Weld
I am trying to define a startup class for my application in Wedl CDI with Singleton and Startup annotations ( running on tomcat 7), but my PostConstruct method never called.
here is my Startup class
...
1
vote
1answer
30 views
Weld CDI scope exception
I am setting up an application on Weld CDI with tomcat and trying to run a class in application startup to initiate the entity manager.
I am getting the following exception winch indicate I have more ...
1
vote
1answer
22 views
SessionScope and Scheduled threads
In my application i have a service that performs heavy loading (parsing of different files) up on creation. The data is metadata, so wont change during runtime (localized strings, key/value mappings, ...
1
vote
1answer
30 views
CDI Producer(s) Different Versions of same class
I have a JEE6 simple producer class that produces a SimpleDateFromat object:
public class myProducer {
@Produces public SimpleDateFormat produceASimpleDateFormat(final InjectionPoint ...
1
vote
1answer
39 views
Static utility methods to CDI (Weld JEE6)
I have a simple old style static methods in a utility class. I am struggling to "CDI" it due to the paramterised objects required each time..any help appreciated on how best to approach this?
i.e. i ...
0
votes
2answers
76 views
NullPointer with Arquillian CDI test
I am trying to run a simple CDI test from this tutorial. Below is my JUNIT and POM. Not sure what the error is. Appreciate any help.
ERROR
java.lang.NullPointerException
at ...
2
votes
1answer
67 views
Using Weld CDI instead of OpenWebBeans in TomEE
I'd like to run a WebApp on Apache TomEE using Mojarra and Weld.
I put "javax.faces-2.1.21.jar" and "weld-servlet.jar" in my /WEB-INF/lib directory. I also added an empty "beans.xml" to my WEB-INF ...
1
vote
1answer
44 views
Create interceptor qualifier thats ignore annotation value()
Is there a way to create a interceptor qualifier annotation that ignores the annotation string value for qualifying?
for example:
Log.java
@Inherited
@InterceptorBinding
...
0
votes
1answer
92 views
EJB with JBoss 7.1.1 leads to WELD 001303 error
I am trying to fire a get request which leads to a WELD 001303 problem.
@Path("/test")
@RequestScoped
public class TestRest {
@EJB
HelloWorldInterface helloWorld;
@GET
...
0
votes
1answer
71 views
Can org.apache.cxf.service.factory.ReflectionServiceFactoryBean be configured to cache WSDLs?
I am using JBoss 7.1.1 but everytime my EAR makes a SOAP request, it takes about 2 minutes while JBoss creates each service required:
14:30:14,822 INFO ...
0
votes
1answer
64 views
WELD-000315 Failed to acquire conversation lock
I'm creating a JSF 2 application using PrimeFaces 3.4.2 and CDI on JBoss EAP 6. The application has a section that uses a long running conversation for 3 pages. When the user navigates to the first ...
0
votes
0answers
52 views
multiple containers error in Arquillian
I am installing Arquillian in a project which utilizes weld CDI and JPA and I am trying to use embedded GlassFish container (I read that Weld embedded container is not supporting JPA).
I have added ...
0
votes
0answers
42 views
weld-se and netbeans: debugging not working
I am attempting to port a javaSE application to Weld SE to gain dependency injection support. The application starts and behaves correctly (I changed the main to an observer for the ...
0
votes
1answer
41 views
CDI injection when instanciating bean manually
I know this kind of question is coming back regurarly but I wonder if there is a way to instanciate manually a bean (with new Xxxx()) and have my injection done.
Maybe using BeanManager but I don't ...
0
votes
0answers
171 views
JBoss startup warning : MSC service thread … Invalid class name
I want to get rid of the WARN messages in the following JBoss console output.
08:46:53,653 INFO [org.jboss.as.server.deployment] (MSC service thread 1-5) JBAS015876: Starting deployment of ...
2
votes
1answer
66 views
CDI injection loop
I'm running into a issue with CDI Injection into a Weld container in JBoss 7.1.1
I've got the following object model :
@Stateless
class ServiceEjb {
@Inject
A a;
}
class A {
@Inject
B b;
}
class B ...
0
votes
1answer
106 views
CDI injection not done in base class for jax-rs controller
I'm struggling with CDI and class inheritence.
I've a JAX-RS controller declared as :
@Path("/share")
public class ControllerShare extends BaseController {
@Inject
private ServiceShare ...
0
votes
0answers
40 views
How to discover a CDI producer in a WAR context?
I'm stuck with a CDI problem. I've deployed a war that contains various jars in its WEB-INF/lib folder.
One of those jars has a Logger producer (a class with a method which is annotated with ...
0
votes
1answer
208 views
How to deploy Axis2.war in Jboss-7
Hi every one I am new in jboss-7 i deploy axis2.war in jboss-7
folder structure is jboss-as-7.1.0.Final/standalone/deployments
I have put axis2.war in side the folder deployment.
Here is my log file:
...
2
votes
1answer
111 views
Intellij IDEA doesn't work debug
I have a problem with debug in IDEA. From particular moment when I try debug my web app on JBoss AS7 when I get row
Starting weld service for deployment
And debug not stop but nothing to get after ...
0
votes
1answer
227 views
Conversational Scope - Conversation Propagation
On a JSF page, every handle file upload event creates a new Instance of Bean. As if it is like a new client each time. Also it seems like the web browser is a different client too.
So, Is there a way ...
0
votes
1answer
144 views
Use Conversation Scoped Beans in REST service
I'm running a CDI based application on JBoss AS 7.1.1 which uses Conversation Scoped Beans.
I need to invoke one of these beans from a RESTeasy Service. Unfortunately when I invoke the Conversation ...
0
votes
2answers
176 views
Session bean injection with CDI
I am trying to inject a session bean into another session bean (in this particular case its the same session bean), and I get this error:
org.jboss.weld.exceptions.UnsatisfiedResolutionException: ...
0
votes
1answer
54 views
WELD Exception when using SLSB interface
I have a Java EE 6 CDI based application running on JBoss AS 7.1.1 which contains some Session Beans too.
@Stateless
public class OrderService {
@Inject
private Logger log;
@Inject
private ...
0
votes
3answers
491 views
Attempting to use Jersey (JAX-RS) and Weld (CDI) in Tomcat 7. Getting noClassDefFoundError for javax.annotation.ManagedBean
I'm trying to make Weld work with Jersey on Tomcat 7.0.34 but seem to be running into this issue. The actual exception is
java.lang.NoClassDefFoundError: javax/annotation/ManagedBean
but I'm not ...
0
votes
1answer
67 views
CDI how to fire events for deleted Entities
I've created a sample application based on the JBoss Kitchensink example. This application records Entities using CDI Beans. I've found quite easy to store a new Entities using JPA + firing the ...
0
votes
1answer
93 views
How to select between different CDI-bean implementations runtime
I have a messageListener which purpose is to start clients implementing the Client-interface. The different implementations of the Client-interface is not know at compile time.
The messageListener ...
3
votes
1answer
228 views
Performance impact of using CDI
I am writing a Java EE 6 web application and I am noticing a significant performance impact when using an injected object versus creating and using the object directly. The overhead appears to be of ...
0
votes
0answers
87 views
CDI and WELD in java-web-start APP (java se)
Im trying to use CDI in a Java-web-start app but get stuck at classloading. Looks like FileSystemURLHandler treats the URLs in the web-start cache as files.
...
5
votes
1answer
779 views
CDI: beans.xml, where do I put you?
I am using Weld as CDI implementation. My integration test, that tries to assemble object graph instantiating Weld container works well, when I have empty beans.xml in ...
-1
votes
2answers
225 views
get instance of bean within a sessionscope via session.getAttribute
Within my (JSF, Servlet 3.0) sessionscope there are instances of classes. How can I get the instance of a class by using the names provided in sessionscope?
For example, in my session there is a ...
0
votes
0answers
198 views
JSF2.0 h:commandlink action attribute not binding to a method
I have an application running JSF2.0 on the front end. In the backend instead of using managed beans I'm using weld's named beans. The bean in question is annotated @Named @Singleton @Startup and is ...
2
votes
0answers
237 views
Performance issues with J2EE application on JBoss 7.1.1Final
recently we have deployed J2EE application on JBoss 7.1.1Final. This application is using CDI (Weld implementation), JSF 2.1 (Mojarra), Seam 3 and Hibernate 4. When we're experiencing higher load, the ...
0
votes
1answer
2k views
ERROR [org.jboss.as.server.deployment.scanner] (DeploymentScanner-threads - 2){"JBAS014653: Composite operation failed and was rolled back.
Hi Every one i have some problem with jboss-as-7.1.1.When i deploy axis2.war in jboss-5.1, jboss-6.1 it's work fine but when i deploy in jboss-as-7.1.1 i am getting error
My error log is given ...
0
votes
0answers
122 views
Seam 3 redirect doesn't work
Handler method is processed but redirection doesn't work.How can I redirect a custom error page ?
public class ExceptionHandler {
public void fileNotFoundException(@Handles ...
1
vote
1answer
358 views
deploymentURL not injected into integration test with Arquillian Drone
I am trying to introduce integration testing using Arquillian Drone in our project. I did some small demo apps, read some stuff and finally tried to write a simple integration test for relatively ...
1
vote
1answer
119 views
What is CDI (Weld) equivalent for Guice's Names.bindProperties(Binder, Properties)?
There's a convenient method in Google Guice which allows binding of properties in one call:
Names.bindProperties(binder(), myProperties);
which are then injectable by annotation:
@Inject
...
0
votes
0answers
186 views
null pointer exception when deploying to jboss
I am getting the following null pointer exception when I deploy my JSF application to JBoss AS 7.02. The application deploys fine on Tomcat7. I am not getting enough of a log trace to figure out what ...
0
votes
2answers
240 views
Spring's SessionFixationProtectionStrategy kills CDI Conversation under JBoss / Weld
I have an object that's marked as @ConversationScoped and is used between many steps of a wizard.
This works perfectly except that when my user's are login in, the SessionFixationProtectionStrategy ...
0
votes
1answer
282 views
Using MyFaces CODI with JBoss 7
I was using JBoss 7 with JSF 2.0 (Mojarra) and Weld as CDI. Everything that JBoss already provides. Also, I added Primefaces to the package. So by now, my project is:
JBoss 7 + JSF 2.0 + Primefaces + ...
0
votes
2answers
239 views
“Unsatisfied dependency” warning when injecting Conversation into backing bean
@ConversationScoped
public class BackingBean
{
@Inject Conversation conversation;
public BackingBean() {}
...
}
Why is Intellij giving me a warning: "Unsatisfied dependency: no ...
2
votes
1answer
358 views
Postconstruct not being called by ApplicationScoped bean being injected into a Singleton bean
Basically I want to retrieve some properties with my timer but I keep getting a null pointer because properties bean never seems to call @postconstruct. Any ideas why?
DataCaptureTimer.java:
import ...
1
vote
1answer
3k views
CDI injection is not working in Servlets
I really need your help. I'm working on this problem for weeks or months now. I apologize for the long post, but I want to explain the problem and my settings as precisely as possible.
My JAVA EE 6 ...
0
votes
0answers
230 views
CDI injection of managed bean from java module
We have an JEE 6 enterprise application running in a JBoss 7.2.0 Alpha1 container with following structure:
app.ear
services.jar (EJB Module)
beans.xml
ServiceA.java
lib/domain.jar (Java ...
2
votes
1answer
91 views
Is there a way to know if a state is active without catching ContextNotActiveException?
I would like to know if the RequestScoped context is currently active in a method or not.
At the moment, here is what I do :
@Inject private BeanManager beanManager;
public boolean ...
0
votes
1answer
156 views
Replacing factory class with CDI
I have a collection of Processor beans in my application along with a factory for creating them.
public abstract class Processor {
public Processor(String config) { .... }
public abstract ...
2
votes
1answer
146 views
How to determine the concrete type of the parameterizedType of injected CDI bean
To make a long story short, I have these classes
public class BaseController<T extends BaseEntity, ID extends Serializable> implements Serializable {
@Inject
private ...
