Weld is the reference implementation (RI) for JSR-299: Java Contexts and Dependency Injection for the Java EE platform (CDI). CDI is the Java standard for dependency injection and contextual lifecycle management, a Java Community Process (JCP) specification that integrates cleanly with the Java EE ...
31
votes
4answers
5k views
Google Guice vs. JSR-299 CDI / Weld
Weld, the JSR-299 Contexts and Dependency Injection reference implementation, considers itself as a kind of successor of Spring and Guice.
CDI was influenced by a number of existing Java ...
19
votes
4answers
5k views
Are @ManagedBean's obsolete in JavaEE6 - because of @Named in CDI/Weld?
Because of CDI (and its implementation Weld), every POJO in JEE6 can be annotated with @Named, which makes the POJO accessible to the view.
Does that mean that ManagedBeans are completely obsolete ...
12
votes
2answers
612 views
What are the best debugging tricks with Weld/CDI?
One of the beauties with Java EE 6 is the new dependency injection framework - CDI with the Weld reference implementation - which has prompted us to start migrating internally to JSR-330 in an ...
11
votes
1answer
729 views
How to create a modular JSF 2.0 application?
I have an application with a well defined interface. It uses CDI for resolution of the modules, (Specifically it uses Instance<> injection points on API interfaces to resolve modules) and passes ...
11
votes
1answer
356 views
Is there an equivalent in CDI(WELD) to build definitions (as done in Guice modules) and then create an Injector?
I like the way Guice makes it fairly straight forward to manually create your own modules each with their own bindings done in code. CDI on the other hand seems to rely more on magic rather than ...
10
votes
3answers
919 views
JBoss Weld + java.lang.OutOfMemoryError: PermGen space
I've just switched to Weld to make use of CDI JSF 2 Beans + conversation scope.
Here's my maven dependency :
<dependency>
<groupId>org.jboss.weld.servlet</groupId>
...
7
votes
6answers
840 views
How to inject String constants easily with Weld?
We have a situation where we provide an external configuration in form of a Map to our running programs. I have found that JSR-330 Dependency Injection gives a much cleaner way to use that ...
6
votes
3answers
129 views
How to use inheritance and lists of CDI events?
Is it possible to use type variance in CDI events? here is the case:
Suppose i have a root event type MyEvent and subclass DummyEvent
My goal is to process a list of events received from a remote ...
5
votes
3answers
300 views
Is it possible to destroy a CDI scope?
I'm working on a Java EE application, primarily JAX-RS with a JSF admin console, that uses CDI/Weld for dependency injection with javax.enterprise.context.ApplicationScoped objects. Minor debugging ...
5
votes
1answer
1k views
How to inject a non-serializable class (like java.util.ResourceBundle) with Weld
I want to create a Producer that makes it possible to inject a java.util.ResourceBundle into any class in order to get localized Strings easily. My ResourceBundle-Producer looks like this:
public ...
5
votes
5answers
2k views
Differences between Java EE 6 CDI Implementations
I've looked at JBoss' Weld Reference Implementation of JSR-299 Contexts and Dependency Injection, and I wanted to know how others CDI implementations compare to each other.
Specifically, I know about ...
4
votes
2answers
295 views
Are JSF 2.x ViewScoped Beans Thread Safe?
I've been googling for a couple hours on this issue to no eval.
WELD docs and the CDI spec are pretty clear regarding thread safety of the scopes provided.
For example:
Application Scope - not ...
4
votes
3answers
432 views
jsf viewparam lost after validation error
I'm facing the following issue: in one page, I list all users of my application and have an "edit" button for each one, which is a "GET" link with ?id=<userid>.
The edit page has a ...
4
votes
1answer
261 views
Can CDI inject remote instances of my Bean?
Can CDI inject EJB references in my remote EJB client?
Actually I've a JUnit test case that runs locally on my system and access a EJB running on a standalone JBoss AS. I'm currently using JNDI to ...
4
votes
1answer
2k views
JSF2 managed bean annotation + scope + injection confusion
I would like to achive this idealism :
To have only 1 implementation for the JSF Bean container, like to use only Spring or Weld but not both. Currently im using Spring for my backend, so i prefer ...
4
votes
1answer
4k views
Using CDI (Weld) in Tomcat with simple POJO classes
After 2 days of debugging and trying I have no other idea than asking you for a solution.
I want to use CDI (on JEE6) in a Tomcat WebApp with only simple plain old java objects (yet).
As far as I ...
4
votes
4answers
13k views
JSF 2.0: use Enum values for selectOneMenu
I'm using JSF 2.0 and want to fill a selectOneMenu with the values of my Enum.
A simple example:
// Sample Enum
public enum Gender {
MALE("Male"),
FEMALE("Female");
private final String label;
...
3
votes
1answer
152 views
Why does CDI injection fail to work in a some modules, but not in others?
In my JEE project, there are several "JEE" modules and a web module.
One of the JEE modules provides a class to CDI that is to be used by the other modules:
@ApplicationScoped
public class XFactory {
...
3
votes
1answer
779 views
Injecting generic Beans with CDI/Weld
I just come from my tiny nice JavaSE/Guice world and am currently discovering the path of "carried by the container"-EE6. After having some trouble with Glassfish3.1, I just switched to JBoss and am ...
3
votes
1answer
250 views
CDI/Weld: book or resource recommendation
Is there an existing, or upcoming book on CDI/Weld that you can recommend?
I'm looking for something that's similar in scope and quality to Seam in Action, which was a great reference for Seam, but ...
3
votes
1answer
451 views
How does CDI injection work in MDBs and @Scheduled beans?
I'm working on a large Java EE 6 application that is deployed on JBoss 6 Final. My current tasks involve using @Inject consistently instead of @EJB, but I'm running into some problems on some types of ...
3
votes
3answers
2k views
Injecting a Spring bean using CDI @Inject
I'm trying to inject a bean defined in a Spring context into a CDI managed component but I'm not successful. The bean is not injected, instead a new instance gets created each time the injection ...
3
votes
2answers
339 views
Can CDI be lessened towards JSE?
JSR-330 dependency injection can be applied to both JSE and JEE environments, while JSR-299 is titled "Contexts and Dependency Injection for the Java EE platform".
Except strictly JEE-oriented ...
3
votes
1answer
335 views
Where should I declare my CDI resources?
JSR-299 (CDI) introduces the (unfortunately named) concept of a resource: http://docs.jboss.org/weld/reference/1.0.0/en-US/html/resources.html#d0e4373
You can think of a resource in this nomenclature ...
2
votes
2answers
106 views
How to specify interceptor at inject time
I have some beans for which, in specific injections, I want to add a given interceptor.
I was naïvely thinking there was something like a @Interceptors annotation that could allow me to write
...
2
votes
1answer
39 views
CDI - possible to get list of event observers?
Is there a way to get a list of listeners for an event? I'm using weld with
glassfish 3.1.1. For example to find out which classes are observing TestEvent:
@Stateless
public class TestListener {
...
2
votes
0answers
268 views
Maven Eclipse Debug “JDWP Transport dt_socket failed to initialize, TRANSPORT_INIT(510)”
I'm trying to debug Maven tests in Eclipse. When I launch tests with the maven option maven.surefire.debug, I get this error :
ERROR: transport error 202: bind failed: Address already in use
FATAL ...
2
votes
2answers
187 views
CDI on GlassFish 3.1.1 b12 generates error “WELD-001408 Unsatisfied dependencies”
I'm trying to evaluate CDI on Glassfish 3.1 and even though I have accomplished to make it work well, when I'm trying to split my code in separate deployment modules I get a weird error. More ...
2
votes
1answer
147 views
Using CDI in JSF, Weld or Solder
Hmm I starting with a jsf webapplication, will be using CDI, but am a bit confused between Weld & Solder, or is it that Solder used Weld under the hood.
Also was Weld called WebBeans before ?
...
2
votes
2answers
355 views
weld archetype vs seam forge
I'm building a new project using SEAM 3. I don't understand what the differences between weld archetype and seam forge. Both of them help us to build a simple project template to start with.
Thanks ...
2
votes
2answers
67 views
CDI: Intercepted method nested call from non-intercepted method of the same bean - should be invoked?
If I have methods
public List<IrcEvent> getEventsByCriteria(IrcEventCriteria crit, boolean descending) {
return getEventsByCriteria(crit, 0, Integer.MAX_VALUE, descending);
}
...
2
votes
1answer
190 views
Java configuration and dependency injection (akin to Springs IoC vs. Weld / Guice)
Lets say I have a class ListCreator which I want to configure. I want to be able to tell it the sort order and the how to output my table. Therefore I have the boolean sortDescending property and the ...
2
votes
1answer
269 views
Inject CDI Session Bean in Servlet
I'm getting in my project inject (@ Inject) CDI Beans scopes Request and Session in a servlet. The problem is that for session beans CDI I'm not getting that states remain. I try to modify the state ...
2
votes
2answers
464 views
Are CDI event observer methods compatible with EJBs?
I have a Singleton EJB (javax.ejb.Singleton version. sigh.) which has a CDI observer method on it. When I try to deploy this to glassfish 3.1 the server fails to deploy the EAR file without any real ...
2
votes
0answers
485 views
How do I combine @Asynchronous and Weld/CDI Events and @Observes(during=TransactionPhase.AFTER_COMPLETION) in Glassfish 3.1
First of all let me state, that the following code example worked just fine in GF 3.0.1. The troubles started when we switched to GF 3.1.
I'm using a method
@Asynchronous
public void ...
2
votes
0answers
382 views
Inject String with qualifier in CDI
I'm trying to do simple thing. Inject qualified String (or File) in CDI.
So I have a qualifier:
@Retention(RetentionPolicy.RUNTIME)
@Target({FIELD,METHOD,PARAMETER,TYPE})
@Qualifier
public ...
2
votes
1answer
386 views
What is Weld, JSR-299?
I've found lots of tutorials showing Weld code samples, but not an introductory overview.
Could you please suggest an introductory article, or answer the following:
What does Weld do/give you?
How ...
2
votes
5answers
1k views
View Scope in CDI Weld
I want to use the @ViewScoped - scope in my application for the backing beans of some web pages. Also I use CDI to inject the dependecies into the backing beans.
However, when I use a backing bean ...
2
votes
1answer
389 views
How to inject ConversationScoped beans in a Servlet
I need to inject a ConversationScoped bean into a servlet. i use the standard simple @Inject tag and I invoke the servlet with the cid parameter but when it invokes any method in the injected bean I ...
2
votes
2answers
505 views
Inject list of objects in CDI (Weld)
Let's say I have an interface called SocialNetworkService, and three implementations - TwitterService, FacebookService and FriendFeedService.
Now I want, whenever my managed bean (or whatever web ...
2
votes
1answer
925 views
Using CDI instead of @ManagedBean: UnproxyableResolutionException because super class has no no-args constructor
I'm trying to use CDI for my JSF/Java EE application. I have the following class hierarchy:
/**
* base controller class
* also contains some final methods and an inner enum class declaration
*/
...
2
votes
2answers
509 views
CDI - Observing Container Events
I am trying to observe both the startup and shutdown events for a CDI web application. I have an ApplicationScoped bean that listens for those events:
@ApplicationScoped
public class ...
2
votes
1answer
501 views
“Unable to convert ejbRef for ejb” on CDI (Weld) injection of @Stateless EJB into @SessionScoped JSF2 bean in Glassfish
[UPDATE: After discussion on the Glassfish forums/ML at http://forums.java.net/jive/thread.jspa?messageID=480532 a bug was filed against Glassfish ...
2
votes
2answers
466 views
how to instantiate more then one CDI/Weld bean for one class?
In Spring it was possible to instantiate any class by defining the corresponding bean in xml conf. It was also possible to instantiate more then one bean for the same class with different ...
2
votes
2answers
339 views
Resolution of external (3rd party) beans in weld
I know it is still not quite popular, since the spec was released just a few months ago.
I haven't "installed" weld yet, I'm just reading, and by this question I want to make sure I've understood ...
1
vote
1answer
25 views
JBoss Weld : Inject different implementation for testing
I would like to inject a different implementation in a bean, depending on the context. Here is the situation :
interface A{}
class AImplForTest implements A{}
class AImplForProd implements A{}
...
1
vote
2answers
97 views
CDI Application and Dependent scopes can conspire to impact garbage collection?
We're starting to experiment with implementing our backend services using CDI. The scenario is this:
EJB with @Startup is started when EAR deployed. An ApplicationScoped bean is injected onto this:
...
1
vote
1answer
158 views
JSR-299 (CDI) configuration at runtime
I need to configure different @Alternatives, @Decorators and @Injectors for different runtime environments (think testing, staging and production servers).
Right now I use maven to create three wars, ...
1
vote
0answers
163 views
CDI SessionScoped Bean instance remains unchanged when login with different user
I've been looking for the workaround of this problem for rather plenty of time and no result, so I ask question here.
Simply speaking, I'm using a CDI SessionScoped Bean User in my project to manage ...
1
vote
2answers
105 views
How do I create a jetty 6 and jetty 7 compatible jetty-web.xml file in the same war file?
In Jetty 6 I need to create a WEB-INF/jetty-web.xml file which contains this:
<Configure id="webAppCtx" class="org.mortbay.jetty.webapp.WebAppContext">
But in Jetty 7 I need the same exact ...