Tagged Questions

5
votes
2answers
2k views

Stateless Session Beans vs. Singleton Session Beans

The Java EE 6 Tutorial says: To improve performance, you might choose a stateless session bean if it has any of these traits: The bean’s state has no data for a specific client. In a ...
1
vote
1answer
181 views

EJB3 Stateless Bean is always null in REST-WebService (Glassfish3, EJB3, Stateless Bean,)

I hope you can help me with this: I have a WebProject created with Eclipse as a dynamic web project, running on a Glassfish3 Server. I’m using EJB 3.0 to create a stateless Façade(@stateless ...
1
vote
1answer
68 views

Local stateless EJB injection within singleton startup EJB

is this possible somehow? Following scenario: statelesse local EJB with name A singleton startup EJB with name B B contains a reference to A I tried but my application server (WAS) fails on ...
1
vote
1answer
64 views

how to navigate from one view to next in a JSF2/JPA/stateless EBJs (jsf managed controllers) and retain data

I have a web app using JSF2 with JPA Entities, Stateless ejb session beans as my facade/ejb objects, and managed beans (request and view scoped) as controllers exposing business methods, managed ...
1
vote
0answers
66 views

Can't convert from @stateless to @stateful beans

I'm having a problem instantiating a stateful session bean on glassfish3.1. A @ManagedBean (session scoped) of a JSF application used to use a @Local interface of a @Stateless session bean and ...
1
vote
1answer
96 views

EJB stateless - Private members initialisation

I'm new to EJB and I'm facing my first problem. I'm trying to use an @Schedule method contained in a Stateless EJB. I'd like this method to use a private member variable which would be set at bean ...
1
vote
2answers
486 views

Static vs Instance members in Stateless EJBs

I have a stateless session bean which needs access to a factory class. Is it best to declare this factory class as a static or instance member in the SLSB? Am I correct in saying that, as SLSBs are ...
1
vote
1answer
260 views

Combining Stateless & Stateful Connection

My application have a Stateless EJB. And Now I need to do some db operation via Stateful. Can this Stateless EJB can access the DB Utility which will open connection stateful? Will this lead to any ...
1
vote
1answer
2k views

Can someone explain the difference between @Remote / @Local or only @Stateless in ejb?

I guess the topic says it. I have tried googling this, but havent gotten the answer I am looking for. I have many EJB's with only @Stateless. And sometimes I put @Local on them withouth really ...
0
votes
1answer
66 views

Spring equivalent of EJB Stateless bean

In EJB because of performance reasons beans should be stateless, then application server can maintain pool of beans and assign them to requesting clients. What is Spring equivalent for such type of ...
0
votes
0answers
25 views

Rules about EJBs deployment on WebLogic

I have question about this points: EJBs, Eclipse, WebLogic. I looked at a lot of topics but I can't find reliable pieces of information about all that stuff. I have to write me first stateless and my ...
0
votes
1answer
23 views

EJB call a method between two beans

I have got two Beans. One Stateful and one Stateless. Now I want to call a method, which is in the stateless bean, from the stateful bean. How can I do this? The stateless bean has also got an ...
0
votes
1answer
34 views

Events when stateless ejb is assigned to the pool and vice versa

is there any events like @PostConstruct and ... when a stateless ejb is assigned to the pool? I want to reset som local variables when it happens. RGDS