The cdi tag has no wiki summary.
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 ...
14
votes
3answers
2k views
Why use @PostConstruct?
In a managed bean, @PostConstruct is called after the regular Java object constructor.
Why would I use @PostConstruct to initialize by bean, instead of the regular constructor itself?
14
votes
6answers
2k views
JEE6: Switching to CDI - Best resources
I have a small yet complete JEE 6 application at hand.
The traditional annotations are being used: @Resource, @EJB, @Singleton, @PostConstruct, @PreDestroy, @PersistenceContext, @ManagedBean, ...
12
votes
2answers
613 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
2answers
983 views
@Inject, @EJB, @Local, @Remote, @LocalBean, etc… : confused?
I have the following configuration:
1 EAR on one GF containing 2 EJB-JARs with EJB components.
1 WAR on another Glassfish server (=> other JVM) containing web components accessing the EJB ...
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>
...
10
votes
7answers
676 views
Java Dependency injection: XML or annotations
Annotations becoming popular. Spring-3 supports them. CDI depends on them heavily (I can not use CDI with out of annotations, right?)
My question is why?
I heard several issues:
"It helps get rid ...
10
votes
2answers
2k views
How do CDI and EJB compare? interact?
I'm having a tough time understanding how the two interact and where the boundary between them lies. Do they overlap? Are there redundancies between them?
I know there are annotations associated with ...
9
votes
3answers
442 views
Is CDI a good replacement of Spring?
We are planning to write a web application from the scratch, it has been decided to go with the latest edition of Glassfish which complies to JEE 6 standard, therefore we are analyzing if CDI can be ...
8
votes
3answers
1k views
Inject EJB into domain object with Java EE 6
How can I inject an EJB into a domain object (an JPA entity) with Java EE 6?
7
votes
6answers
841 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 ...
6
votes
2answers
227 views
Should I use @EJB or @Inject
I have found this question: What is the difference between @Inject and @EJB but I did not get any wiser. I have not done Java EE before nor do I have experience with dependency injection so I do not ...
6
votes
1answer
342 views
How Do I Use @ConversationScoped
I am writing a JSF 2.0 application, and I want to use CDI annotations instead of the "equivalent" JSF annotations. In other words, @Model or @Named instead of @ManagedBean, and @Inject instead of ...
5
votes
2answers
70 views
Does CDI make sense if there is no Web layer and hence no HTTP session?
The new JSR 299 "Contexts and Dependency Injection for Java EE" seems to be based on the concept of "Scope".
The beans are created and associated to one of the supported Scopes: Application, Session ...
5
votes
1answer
436 views
Will Spring support CDI?
Spring has been a good framework for DI and AOP for Java developers.
Now, there comes a standard specification for DI and AOP which is CDI.
Any good product can no longer stays good without ...
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
3answers
988 views
Dependency Injection EJB 3 - too many choices?
we are starting a new project based on EJB 3.0. i have a "spring" based background (and love it), so for me loose coupling and testability is a big must have. this post should not be about "ejb vs. ...
5
votes
2answers
643 views
Does weblogic support CDI Beans?
I started to work with weblogic 11g version 10.3.2.0
Does weblogic support CDI Beans ?
Thanks
5
votes
5answers
3k views
JSF: Backing beans (@ManagedBean) or CDI Beans (@Named)?
I've just started reading through Core JavaServer Faces, 3rd Ed. and they say this (emphasis mine):
It is a historical accident that there are two separate mechanisms, CDI beans
and JSF managed ...
5
votes
1answer
711 views
Are JEE 6 CDI events transactional?
Are Java EE 6 CDI events transactional?
If I fire an event in a transaction, and subsequently roll back the transaction, are the effects of the Event listener rolled back as well?
Is this ...
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
1answer
125 views
Is it possible to @Inject a @RequestScoped bean into a @Stateless EJB?
Is it possible to inject a request-scoped CDI bean into a Stateless session bean?
I had asked a related question and thought the specific CDI @RequestScoped into @Stateless question merited its own ...
4
votes
1answer
68 views
Would (or should) CDI provide package qualifiers?
Studying Seam 3, I discovered that Seam Solder allows the @Named annotation to be applied to packages - in that case, all beans in this package will be automatically named, as if they were qualified ...
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
251 views
Newbie question about Java EE 6 and CDI
I'm just starting to learn CDI and Java EE 6, but I found this piece of code that I want to fully understand.
@Stateful
@Model
public class MemberRegistration {
@Inject
private EntityManager ...
4
votes
3answers
232 views
The difference between context and scope in CDI - and Java at all
Studying JSR-299, I read the section 5.1 of the Weld reference which explains how scopes works in CDI. Apparently, context is a concept closely related to scope. I have understood a bit about what ...
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
2answers
916 views
What is the difference between @ApplicationScoped and @Singleton scopes in CDI?
In CDI there is @ApplicationScoped and @Singleton pseudo-scope. What is the difference between them? Besides that @ApplicationScoped is proxied, and @Singleton is not.
Can I just change my @Singleton ...
4
votes
2answers
913 views
Seam Faces causes a deploy-time error
I'm running a Java EE 6 application out of an EAR (bundling an EJB-JAR and a WAR) on GlassFish 3.0.1, using ICEfaces 2.0 Beta 1 and a Seam Faces 3.0.0 Alpha 3 Snapshot.
When I deploy the EAR, I get ...
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
1answer
432 views
Using CDI + WS/RS + JPA to build an app
@Path(value = "/user")
@Stateless
public class UserService {
@Inject
private UserManager manager;
@Path(value = "/create")
@GET
@Produces(value = MediaType.TEXT_PLAIN)
public ...
4
votes
4answers
5k views
JSF 2 localization (managed bean)
I have a properties file for localization:
foo=Bar
title=Widget Application
This is tied in as a resource-bundle in the faces-config:
<resource-bundle>
...
4
votes
2answers
497 views
Whats the relationship between Spring and javax.enterprise.inject?
I was reading a Wikipedia article about Java EE application servers here:
http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition#Java_EE_5_certified
It says that 2 APIs that Java App ...
4
votes
1answer
204 views
How to inject beans from external libs with CDI?
How can I use JSR-299 CDI to inject (not annotated) beans from external libraries?
Examples:
Interface X and its implementations come from a third party lib. How can I decide which implementation to ...
4
votes
1answer
398 views
Can one suppress the conversation propagation with an `<h:link>`?
I'm using the new JSF2 <h:link> tag, with a nested <f:param> to link to a page using a get request. However, the conversation id (cid) is propagated via the query parambeters of the link ...
3
votes
1answer
64 views
Java EE 6 : @Inject and Instance<T>
I have a question about the @Inject annotation in java ee 6 :
What is the difference between :
@Inject
private TestBean test;
@Inject
private Instance<TestBean> test2;
To have the reference ...
3
votes
2answers
51 views
How can I create a reusable view using JSF
Here is the scenario - I want to create a view which can be used from a number of other views to create and edit a specific type of object.
My application has an address entity which can be shared ...
3
votes
1answer
134 views
Is the conversation scope an appropriate substitute for the view scope?
In JSF 2.0, the most obvious use-case for the view scope is a single page with potentially multiple AJAX post-backs. Using CDI instead of JSF managed beans leaves us without the view scope so we're ...
3
votes
3answers
112 views
When, exactly, @Inject annotation initiates injection of SessionScoped bean in Servlet?
I need to modify a user session object (SessionScoped bean - CDI) in a Servlet, so I have to obtain that bean somehow. I used injection in the following way:
@Inject
private UserSession user;
where ...
3
votes
1answer
129 views
How does @SessionScoped work with EJB? Is CDI only for web-tier?
How is the session defined in @SessionScoped CDI bean?
Is this annotation valid only when called from Servlet container, where the session is well defined in form of HttpSession?
If not, than how an ...
3
votes
2answers
274 views
CDI injection in a JSP
Within a JSP it is possible to use CDI managed beans using EL expressions such as ${myBean.myAttribute}. No problem here.
I would like to use "regular injection" (i.e. without using EL expressions) ...
3
votes
2answers
117 views
JSF Bean property not updated
I have a bean with a field called 'name', and a JSF form that has an inputText mapped with this field. The initial value of the field is well displayed on the form.
The problem is when I submit the ...
3
votes
1answer
446 views
Calling a CDI session scoped producer method from an EJB stateless session bean
I want to inject the current user using @Inject @Current User across all layers (i.e. web layer, EJB layer). In order to do this, I have the following CDI Producer method:
@Named
@SessionScoped
...
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
0answers
154 views
CDI producer method for data model
I'd like to be able to @Inject a data model backing a RichFaces 4 ExtendedDataTable, but it requires an EntityManager to do its work. The EntityManager's queries need to know the Class, of course, and ...
3
votes
2answers
217 views
How to get a 'JBoss service' with CDI in JMX with AS6?
I'm currently migrating a JBoss service class from AS5.1 to AS6 (not going to AS7 for a variety of reasons).
For AS5.1, the service implements a {serviceName}MBean and has a jboss-service.xml with ...