Tagged Questions
0
votes
1answer
33 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 ...
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
...
1
vote
1answer
63 views
Injecting EJB into servlet via remote interface
I am reviewing some Jave EE 6 code and having doubts about its correctness:
@WebServlet
public class FooServlet {
@EJB
private transient BarRemoteInterface bar;
}
@Remote
public interface ...
0
votes
1answer
113 views
JSF converter scope when using CDI (Seam 3) view-scoped
I'm currently reviewing code and found CDI converters like:
@Named
@RequestScoped
public class BankConverter implements Converter, Serializable
{
@EJB
private BankService bankService;
...
1
vote
0answers
38 views
CDI event originator's transaction waits for Observer(AFTER_SUCCESS) transaction?
I have the following scenario: (pesudo-code)
CallerObject.method() {
SessionBean1.method1(); // through remote bean interface
// [1]
}
@TransactionAttribute(REQUIRED)
...
0
votes
1answer
49 views
Declarative transaction management in EJB
I know that the questions which refer to a link are not the favorite ones to the users of this great site, but I could not set my question in a different way. I am trying to delve into EJB and CDI and ...
0
votes
1answer
89 views
Stateless CDI Managed bean
I cant find a bean in JNDI on my jboss when I deploy a WAR file that has jsf 2.2 I get the following exception. Anyone know why this is happening? (the bean is in JNDI, I see that Jboss binds it and I ...
1
vote
1answer
75 views
Injecting a stateless EJB into Servlet
I'm trying to inject a stateless EJB into servlet.
But it is not working. Did I understand something wrong?
If I do this in a @WebService annotated class, I can use the injected EJB without problems.
...
0
votes
3answers
275 views
How to inject a CDI Bean in a ManagedBean?
I want to inject a CDI Bean in a ManagedBean either with the annotation @Inject or @Produce. The CDI Bean which I use is:
@Named
@Startup
@ApplicationScoped
public class BaseBean {
private ...
1
vote
1answer
126 views
CDI Events not received from a Singleton EJB
I'm struggling a little on CDI Events.
I have a class that is implemented as a CDI Singleton almost like this:
import import javax.inject.Singleton;
@Singleton
public class MyClass{
@Inject
...
1
vote
1answer
117 views
Is @PreDestroy called after an exception in @PostConstruct in JavaEE 6?
Currently, we have an issue with a more complex initialization in a @PostConstruct method on JavaEE 6. There are several places where something could go wrong and where an exception is to be expected. ...
3
votes
1answer
76 views
How does a Java Event, specifically the javax.enterprise.event.fire() behave?
I have the following situation (running on JBoss AS6 and AS7):
An Singleton EJB with a scheduled method.
An injected Event of type SomethingChangedEvent
Consider the following examples:
...
0
votes
1answer
262 views
How to use EJB from Netbeans ejb project in the web project?
I've created a NetBeans Enterprise application which consists of an ear that wraps an ejb (jar) project and a web (war) project.
I have a servlet in my web project and I want to use one of the EJBs ...
1
vote
0answers
138 views
Error starting arquillian
I'm trying to get some unit tests running for an already-existing project, using Arquillian.
My basic test:
@RunWith(Arquillian.class)
public class InferenceTest {
@EJB private InferenceEJB ...
4
votes
1answer
224 views
How to inject EJB into SOAPHandler?
My JAX-WS war contains following entries.
WEB-INF/lib/
WEB-INF/beans.xml // empty
WEB-INF/lib/commons-logging-1.1.1.jar
WEB-INF/lib/corrs-beans-1.0-alpha-1-SNAPSHOT.jar // EJBs are here
...
2
votes
2answers
91 views
Purpose of CDI technology in Java EE and its relation to UI technologies like JSF and back end technologies like EJB
This question directly follows from another question of mine here. The last paragraph of the answer to that question mentions CDI technology.
Can you explain what is the purpose of that technology. ...
1
vote
2answers
190 views
Why not just use CDI backed bean (instead of SFSB) to hold Session information?
Context
Simple Java EE 6 (JBoss AS 7.1) CRUD Web App, Using a @Named backing bean, @SessionScope of JSF pages:
Question
Why would be a bad idea to store the HTTP session stateon the CDI bean? For ...
2
votes
1answer
132 views
Best practice for serialization for EJB and CDI beans
I have not yet experienced any serialization-related issues. But PMD and Findbugs detect a bunch of potential problems regarding seriazation. A typical case is an injected logger that is being ...
0
votes
1answer
66 views
How to access a local interfaces from one project into another within the same ear project
I have a web project that has FacesValidator, this validator needs to access an EJB service to verify if a record exists. Unfortunately, I cannot inject my enterprise beans since the validator is not ...
0
votes
1answer
170 views
Handling CDI Events in Stateless session beans
I'm trying to understand how CDI Events work in order to implement their usage in my application, that is structured like this:
I have a JCA Resource Adapter that starts a Socket Server.
Then I have a ...
2
votes
1answer
331 views
Injecting a Logger into an Ejb using CDI
I'm struggling a bit to put together what I thought was a simple task.
I have a Stateless Singleton Bean, that I'm going to use as a "loader" for my app.
The bean is included in a Jar (loader.jar) ...
0
votes
1answer
172 views
Injecting EJB3 / CDI / JSF beans in console application for testing / experimentation purposes
Is there any way to inject EJB3 / CDI / JSF beans (if the last category makes any sense) and use the respective annotations without having to use a Java EE container? I.e. in a plain old static void ...
0
votes
0answers
175 views
How to select bean to inject at runtime
I'm trying to find a way to choose between several EJBs to inject at runtime.
The scenario goes like this:
There are i.e. 2 beans (ejbA, ejbB) which all implement the same interface (ejbInterface). ...
1
vote
2answers
117 views
CDI and EJB, security issues?
I am reviewing my code from since I picked up on JSF.
One of the most complex issues has come up once again. The decision between CDI and EJB.
I am using three layers and I wonder which type of ...
0
votes
1answer
444 views
Produce an Entitymanager with extended persistence context via CDI
We are trying to build a system, which "produces" an entitymanager depending on the logged-in user (kind of multitenancy). Therefor we implemented a stateless ejb like this:
@Stateless
...
0
votes
1answer
338 views
How to properly use @Alternative for client implementations
EDIT: I changed the CDI injections points from using @EJB to using @Inject as indicated in my below comments. Just an FYI.
I have two EAR projects, both basically the same. The only difference ...
0
votes
1answer
260 views
<f:actionListener> causes a “transaction not active” exception on a stateful EJB/CDI bean while <f:setPropertyActionListener> does not
I have a Seam 3 view-scoped, stateful EJ bean, which is used from JSF pages (you can skip the code on the first read):
@Named
@ViewScoped
@Stateful
@TransactionAttribute( ...
0
votes
1answer
77 views
Serializability of injected CDI bean into stateful EJB
I've got stateful EJB and injected to it application scope CDI bean. Findbugs gave warning, because my CDI bean was not serializable. Does CDI bean here should be serializable? imo it shouldnt, in ...
3
votes
1answer
130 views
Injecting a POJO class from an EJB jar into an EJB in a different EJB jar
Given I have two EJB jars in an ear: A.jar and B.jar. Can I inject a utility class Autil that is not an EJB, just a POJO from A.jar into an EJB that is in B.jar using CDI? I cannot find this clearly ...
5
votes
1answer
316 views
Startup ejb bean does not work
I am trying to do something at startup using a startup ejb. But my bean is never called.
This is my bean:
import javax.annotation.PostConstruct;
import javax.ejb.Startup;
import ...
2
votes
2answers
298 views
Common use cases of CDI events in JSF applications
Having bean using CDI beans (with Myfaces CODI) in place of JSF managed beans for some time I've been going through some tutorials to get a better understanding of what I can really do with this ...
0
votes
1answer
304 views
Why when I convert managed bean to SFSB do I get TwoPhaseCoordinator.afterCompletion - returned failure for SynchronizationImple
My @SessionScoped WorkflowManager managed bean was able to reset state when session timed out, causing Welcome splash screen to be displayed. After adding @Stateful to the WorkflowManager the Welcome ...
1
vote
1answer
336 views
FlushMode type Commit used with REQUIRES_NEW Transaction Attribute
I'm developing with JBoss 7.1.1 Final, Weld, Hibernate 4, Seam 3 and I don't understand following behavior. I use Seam Managed Persistence Context for Entity managers and Persistence Interceptor from ...
0
votes
0answers
218 views
JSF - CDI instancing again a session bean
The source code:
public class ReportGenerator implements Serializable {
private static final long serialVersionUID = -3995091296520157208L;
@Inject
private ReportCacheSession ...
0
votes
0answers
155 views
Deployment differences between CDI artifacts @Named and EJB artifacts @Stateless
I build an EAR like this :
myEAR
|
+----myWAR
|
+----myJAR
|
+----myEJB-JAR
Compilation and dependency mechanism are maven style. Dependencies are :
pom.xml : myEAR
<dependency>
...
2
votes
2answers
576 views
Injecting a SessionScoped Stateful bean in EntityListener
I'm trying to implement some sort of auditing in a Java EE JPA application on GlassFish 3.
I have added a @EntityListeners annotation on my @MappedSuperclass entity, the listener has the @PrePersist ...
3
votes
1answer
207 views
Why is it possible to @Inject a @Stateless EJB into a @SessionScoped Managed Bean?
Why is it possible to @Inject a @Stateless EJB into a @SessionScoped Managed Bean?
I am just very curious because it is not possible to use a @RequestScoped Managed Bean in a SessionScoped Managed ...
2
votes
3answers
219 views
JavaEE: Perform task at the end of a request/transaction
we have a situation where we want to perform some tasks at the end of a request or transaction. More specifically, we need to collect some data during that request and at the end we use that data to ...
1
vote
1answer
242 views
EJB injected in @Model bean gets created on every request (GlassFish)
i can not find a soultion or any reference to this on the web. here is the problem
I have a very simple web project
index.xhtml
<html xmlns="http://www.w3.org/1999/xhtml"
...
0
votes
1answer
395 views
how to Injection a FacesConverter or managed bean from a lib/jar file?
I try to build a JSF 2.0 Web application which is using libraries including EJBs and FacesConverters/ManagedBeans.
My war file looks like this:
-WEB-INF/
|-beans.xml
|-lib/
| |-myejb.jar
| ...
1
vote
1answer
124 views
Client conversation with server and JPA transactions
I'm developing an information system and there is something I don't know how to deal with.
Let's say my website allows admin to edit users. When two administrators want to edit the same user at the ...
2
votes
1answer
87 views
Which type of beans are injectible?
With the concept of CDI in EJB3.X, you can inject the beans or entities.
What i want to know is: which types of beans you can inject.
Session Bean in Entity? Entity in MDB, etc???
How can I find a ...
5
votes
1answer
1k views
NullPointerException in sessionContext.getCallerPrincipal()
I have an simple (webprofile) EJB 3.1 Application and try do determine the current user within an @ApplicationScoped CDI Bean, so I use:
Principal callerPrincipal = ...
1
vote
1answer
608 views
JPA CDI Injecting DAO into an Entity
I'm new to JPA and CDI and I'm trying to create an enterprise application using these frameworks.
I get how I can inject into beans and keep everything tidy and stateless. I also get that JPA loads ...
0
votes
1answer
294 views
pass params between JSF beans for a single view.xhtml
Possibly I'm using forms incorrectly. The idea is that detail.content displays some HTML, and this portion works fine. The form is supposed to allow multiple (one-to-many notes to be entered and ...
0
votes
1answer
235 views
@Entity with JSF, persist “hello world” with JPA
Oracle describes very well how to make an @Entity. However, it's not strictly clear to me how to actually add/drop tables. I also like the rose india explanation, but just want to clarify the ...
0
votes
2answers
127 views
Can I use Gin and Guice in an EJB 3.1 project?
I'm going to start a Java EE project with EJB3.1 technology. I know the new EJB concept allows Context and Dependency Injection.
In an old project I used GIN and GUICE in a GWT Project. It was nice.
...
8
votes
1answer
2k views
ManagedProperty in CDI @Named bean returns null
I'm trying to deal with @ManagedProperty but without success !
I've been following this guide, and it not seems that hard.
But my code simply won't work!
Here's a little snippet
@ManagedBean
...
0
votes
1answer
119 views
testing multiple sessions with integration tests?
Is it possible to simulate multiple "sessions" in a java-ee container with a unit testing framework, such as Arquillian? I have many sessions that interact with each other, and I would like to ...
1
vote
3answers
572 views
Migrating CDI/EJB annotations to Spring annotations
I'm trying to replace my CDI/EJB annotations with Spring ones. But I'm struggeling how to do it right.
This is what I have in CDI/EJB:
@Stateless
...
