Java Platform, Enterprise Edition (Java EE) 5 brought dependency injection (DI) with Convention over Configuration to Enterprise JavaBeans (EJB) 3.0. Java EE 6 introduces the flexible and powerful @Inject dependency injection model (JSR-330 and JSR-299) in addition to the already existing @EJB ...

learn more… | top users | synonyms

1
vote
1answer
22 views

CDI and pooling

Does CDI allows pooling in some way?Because I thought this is a feature of EJB beans but Adam Bien says in this screencast that container chooses whether to create new instance of class through ...
0
votes
2answers
15 views

Seam to CDI Migration

We are migrating our application from JBoss Seam to CDI so as expected we had to change all the Seam annotations with their equivalent CDI annotations, So far for basic annotations we succeeded for ...
0
votes
2answers
36 views

Datalist Pattern with Jsf 2 and CDI

I've an class like... @RequestScoped public class UserList ... public List<User> getUserList(){ return getEntityManager().createQuery(getCriteria()).getResultList(); //getCriteria() hard ...
0
votes
1answer
32 views

Caused by: javax.naming.NameNotFoundException - Name [Class/object] is not bound in this Context

have a problem that am dealing with since 6 hours but don't get to solve it. Am developping a Dynamic web project using JSF/Tomcat 7/ Maven/Java 7 Everytime I run the project on the server I get ...
1
vote
1answer
22 views

How to use ConversationScoped EntityManager inside StatelessBean

We inject EntityManager into Bean (located inside Service Layer) as below: @Inject EntityManager entityManager And We use these services inside ManagedBean (located inside view layer). Everything ...
0
votes
0answers
22 views

Eclipse - Include JAXB Project in Java EE Project for JAXBContext CDI

My issue seems to be some sort of build path/export issue. I have a simple JAXB Project that contains a number of JAXB classes generated from an XSD schema. These classes are in a ...
0
votes
1answer
38 views

CDI + JPA Multiple @OneToMany - LAZY/EAGER - LazyInitializationException OR Cannot instantiate multiple bags

First of all, I would like to say that I have been watching posts on StackOverFlow since forever. And Ive just wondered, why don't give it a shot and post my own question since I have been searching ...
0
votes
0answers
43 views

Injected cdi bean doesn't hold variable

Hi I have experimented @Inject annotation with cdi bean. I have one variable in first bean which is injected into second bean. When I call method on second bean using variable in first bean, during ...
0
votes
1answer
42 views

Target unreachable CDI

I try to connect my web application with CDI but it don't want to work... There is an beans.xml file in WEB-INF. When I try to access fields from the CDI-Bean I get an ...
0
votes
1answer
18 views

Guice / CDI / JEE6 Why does instance.select(qualifiers) use instances instead of Annotation of MyQualifier.class?

Say you have this injection point: @Inject private Instance<DeliveryEndpoint> allEndpoints; And you want to select a subgroup of endpoints annotated with @ActiveEndpoint ...
1
vote
1answer
41 views

Parallel webservices access in a Weld CDI environment

We're developing a Web Frontend using JSF 2 and Weld Cdi on Tomcat. Now I've a problem executing multiple webservices in parallel to optimize the request time. The user may select mutliple items form ...
2
votes
1answer
30 views

what is the values() that I have seen in various CDI qualifiers in java?

good day. I have seen various references to values() inside @qualifier definitions. I understand @Qualifier to be a tagging system, yet you define them as an interface. An interface can allow enums, ...
0
votes
1answer
21 views

How can CDI event in a EAR fires and observe from different EAR in same JVM?

I have tested this scenario, with CDI event in one EAR get triggers and consumer can invoke as long as it is same EAR. Is CDI event is limited to its EAR package?
0
votes
0answers
21 views

CDI event is null when using in jar

I am not sure why the CDI event is null, even I have the beans.xml in MET-INF. This jar is placed in EARpackacge-->lib->jar. public class DocumentEventProcessor implements IEventProcessor { ...
2
votes
1answer
44 views

Please explain the @Produces annotation in CDI

I have read about the @Produces annotation in CDI, but I don't understand its usage. public class Resources { // Expose an entity manager using the resource producer pattern ...
1
vote
1answer
42 views

CDI: how to apply interceptor to library (third-party) code?

I'm working only in a Servlet container (Tomcat) with CDI (weld) and JPA (hibernate). I've found many examples online of creating a "Transactional" interceptor: import ...
1
vote
1answer
34 views

Can CDI scan a configured folder at injection time for beans? (hot deployment)

I have a Java EE 6 Web application running on Apache TomEE. My application defines a few interfaces A, B and C. I have multiple .jar files containing implementations to these interfaces. Whenever a ...
0
votes
1answer
27 views

Access EJB from different WAR in JBoss AS via injection

My Project structure is as follows JBoss AS 7.1.3.Final-redhat-4 A war VWeb.war which contains an EJB , when VWeb is deployed I get the following ...
0
votes
0answers
40 views

CDI event is always null

CDI Event is always null I get the below exception. I am wondering whether we can use CDI in general static methods. Does this class should be managed bean, in order to make the CDI event work? ...
0
votes
1answer
47 views

No active contexts for scope in EJB service

I have EJB bean and there is a class RemoveInactiveUsersTask extends TimerTask when I invoke method which update user status in DB. This is sample code of my class: @Singleton @Named ...
0
votes
1answer
43 views

Spring Data JPA - Using @Transactional in a CDI environment instead of Spring environment

I realized after writing this question I could sum it up in a few sentences. How can I manage transactions in Spring-Data-JPA with CDI the same way you would by using @Transactional in Spring itself? ...
0
votes
2answers
52 views

How to write main() using CDI in Java EE?

I have a no-client application that I wish to run. It will have no clients but it will make HTTP calls and act as client for other services. It would run for perhaps a few hours or days (but it will ...
1
vote
2answers
35 views

Use entity manager in CDI extension

I want to write a CDI extension which loads some entities from database (which are in fact groovy scripts that implement a certain interface) and provide them as beans, so that it is possible to get ...
1
vote
1answer
61 views

PostConstruct in CDI SessionScoped managed beans

Short story: I have a CDI @SessionScoped bean (annotation from javax.enterprise.context and not from javax.faces) called UserContextBean. I'd like to actually do something when an HTTP session is ...
0
votes
0answers
29 views

@Inject in a Java EE application client does not work?

Problem Injecting an enterprise java bean with @EJB in an application client, launched with Java web start and from a GlassFish 3.1.2.2 (build 5) server.. works as long as the requirements are ...
0
votes
0answers
11 views

Update and validate CDI beans from request

First of all I do not use JSF. I'm writing something like framework for web application to my study. I use servlets and CDI with my custom extension. I'm trying to parse http request parameters and ...
0
votes
1answer
47 views

CDI EntityManager fail

Hibernate says "An exception thrown by Hibernate means you have to rollback your database transaction and close the Session immediately". When persist method throws a SQLException and the ...
0
votes
1answer
29 views

When adding book values to @Entity values turn out null JavaEE

i have probably done something very stupid and i have tried and tried for about 4 hours now and i can't figure out what is wrong. When i try to add a book to the database, MySQL increments but all the ...
1
vote
1answer
43 views

Cannot perform CDI in Glassfish 4.0

I am trying to run a particularly simple test case using the latest promoted build of Glassfish 4.0. I have tried placing META-INF/beans.xml in all possible permutations including its own jar in ...
0
votes
2answers
57 views

CDI not working

It is my first time trying out CDI. I have an Eclipse Kepler environment where I have a Maven Web project that is deployed on internal Glassfish 4.0 runtime. It has a servlet and a JAX-RS resource ...
0
votes
1answer
29 views

Attempted to inject an HttpServletRequest before it has been initialized

I have an ear project generated using maven javaee6 artifact and have the following dependencies: ejb/pom.xml -seam-security --solder-xxx war/pom.xml -ejb *Then I excluded seam-security ...
0
votes
2answers
46 views

RestEasy / CDI on TomEE 1.5.2

I'm trying to get a ResteasyApplication running. My major problem is to implementi CDI which should be not too hard^^ ...so here is my prob. Im using @Named on my Service class and @Inject at my ...
-2
votes
0answers
28 views

intellij + JSF + CDI [closed]

Is there any tutorial how to make Intellij IDEA work with JSF and CDI? With apache tomcat or tomEE? I always get into trouble with jar conflict or some sort of exceptions that I can't google. Thanx
0
votes
1answer
47 views

tomcat 7.0 + JSF + CDI support in intellij idea

I get this error during tomcat load: C:\Projects\asdf\ejb7\out\artifacts\ejb7_war_exploded\WEB-INF\lib\weld-se.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: ...
0
votes
1answer
34 views

CDI — @Inject not working among dependent projects

The basic architecture of my project (JBoss MSC version 1.0.2.GA-redhat-2) is like this (VWebProj) --- >compile dependency ---> service project (QServiceProj) (QServiceProj) ---->compile ...
0
votes
2answers
56 views

Converting from Seam to weld CDI

I am converting a project from Seam to CDI and I am quite new in these fields. I am stuck in converting @Startup, @Cretae, @RequestParameter , @Out , @AutoCreate ,@ Destroy tags, what is the ...
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 ...
2
votes
1answer
68 views

CDI ViewScope Using CDI Extension or MyFaces CODI or SeamFaces

I see everybody using MyFaces CODI or SeamFaces ViewScope Services saying that CDI don't have @ViewScope annotation If the ViewScope serve just to retrieve the bean after each ajax call back, I think ...
1
vote
1answer
45 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
78 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 ...
0
votes
1answer
41 views

NPE with @Inject in WAR from a JPA utility jar

Please bare with me, I'm new to JEE6... env: JBoss 7.1.1, jdk 1.7, WELD module upgraded to 1.1.10(just in case) I have a JPA project that I am adding to the WEB-INF\lib directory. It contains my ...
0
votes
1answer
58 views

EJB 3.0 Managed bean injecting and db connection closing

In the ejb 3.0 jboss 6 environment, I have a bean called DBInterface that is injected into many dao classes to execute the sql queries. the DBInterface bean has the datasource injected as a field ...
1
vote
1answer
58 views

Implement a site-wide param to change the locale with JSF2 and CDI

Is there a way to implement a viewParam that can change the locale eg. http://example.com/p1.jsf?lang=en or http://example.com/p2.jsf?lang=fr perhaps without repeating <f:metadata> ...
2
votes
0answers
31 views

JBoss can send/receive CDI beans as parameter in remote EJB? [duplicate]

I have two applications that communicate with each other via EJB. And when I try to call a remote EJB passing in parameters a injected value (cdi weld) throws a ClassNotFoundException in my bean ...
2
votes
1answer
59 views

How to use @ConversationScoped with Ajax requests?

I'm using JSF2 and PrimeFaces and each time I make an Ajax request and check if the current conversation is transient, it isn't and a new conversation is started. When I disable the Ajax request, the ...
0
votes
1answer
36 views

Using CDI except a Java Web Application

From Doc i m trying to learn Context and Dependency injection . In tutorials CDI seems can be only use in a Web application.Can i use CDI in a Java Console project ? And How? I added libraries like ...
0
votes
1answer
59 views

Custom Validator class not working

I have a question here: Scenario: I have a JSF-2, Spring (Beans wiring) Application. I have written a custom validator, which I want to execute. @FacesValidator("com.test.vali") ...
0
votes
1answer
45 views

CDI @ConversationScoped and JSP

Doing a POST and then redirect is a very common scenario in web applications. CDI @ConversationScoped plays well with JSF to preserve state between POST and redirect. But, can I use CDI ...
0
votes
1answer
120 views

(AS7) Error calling remote EJB method with proxified CDI bean in parameter

Can I call a remote EJB method with CDI bean in parameter method? Like this: I have a LoggedUserProducer.java thats produces a User from the database. public class LoggedUserProducer { ...
0
votes
1answer
65 views

JSF 2.0 - 2nd validator called even though 1st validator fails

I'm using WAS 8.0.0.5's MyFaces 2.0.4 AND CDI (can't replace WAS 8's version of JSF 2.0 without losing CDI). I have 2 custom validators registered to a component. The first one does a multi-field ...

1 2 3 4 5 19