Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
4k views

Why pool Stateless session beans?

Stateless beans in Java do not keep their state between two calls from the client. So in a nutshell we might consider them as objects with business methods. Each method takes parameters and return ...
6
votes
2answers
2k views

EJB3 Business Logic Patterns & Practices

I'm in the process of developing a multi-tiered financial processing application in Java using EJB3 (Hibernate + Glassfish for the app and web services layer, Lift on Glassfish for the web UI) and I'm ...
3
votes
1answer
87 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 ...
3
votes
2answers
344 views

why pool stateless bean?

Normally we use singleton instance for business / dao layer. What is the reason behind pooling stateless session beans in case of EJBs?
3
votes
1answer
9k views

NameNotFoundException when calling a EJB in Weblogic 10.3

I have a EJB defined as this: package com.foo; @Stateless (mappedName="HelloWorld") public class HelloWorldBean implements HelloWorld, HelloWorldLocal .... When it's deployed to Weblogic (WL), it ...
3
votes
2answers
1k views

Can remote stateless session bean references be cached in EJB3?

I am calling a remote stateless session bean from a J2SE application and would like to cache the reference to the session bean in order to reduce the cost of the lookup. Is this ok? In EJB2 the ...
2
votes
1answer
21 views

Can I be sure that a SLSB which created a Timer will be handling its timeout (Java EE 5)?

In Java EE 5, when using timers and the timer service, who handles the timeout invocation? Can I be sure that the stateless session bean which created the timer wil be the one to handle its timeout ...
2
votes
2answers
93 views

What are the advantages to using a Stateless Bean and DI instead of a POJO and Static Methods

Why would it be beneficial to use stateless beans and dependancy injection over just a simple pojo with static methods? In other words, are the advantages to an EJB purely because of the underlying ...
2
votes
1answer
88 views

How to split SFSB Facade?

I am having some problems devoloping an application based on EJB 3 technology. I would like to use a Facade Pattern in the Session beans to decouple my client (a web application) from my Entity ...
2
votes
1answer
206 views

J2EE Application/Bean configuration Best Practices?

What is the best way to manage property sets to apply to EJB, and easily be able to vary them between machines/environments (e.g. DEV, TEST, PROD)? For example, is there a way to configure your EJB ...
2
votes
3answers
471 views

JSF + Stateless EJB performance

I have a JSF 2.0 application running on GlassFish v3. It has EJBs that serve database data via JPA for the main applications sessions. Even on non-IDE app-server, the EJB calls are very slow. Between ...
2
votes
2answers
222 views

EJB3 Caching Instance Variables

I've noticed some strange code on a project I am working on - its a SLSB EJB3, and it uses a private instance variable to maintain a cache of data (it even calls it dataCache or something), with a ...
2
votes
1answer
1k views

Java EE 6 + JPA - Exception: Message Driven Bean cant be managed bean

I create an Enterprise Application CustomerApp that also generated two projects CustomerApp-ejb and CustomerApp-war. In the CustomerApp-ejb, I create a SessionBean call CustomerSessionBean.java as ...
2
votes
6answers
2k views

Stateless session bean with instance variables

I have a stateless session bean that contains one public method, several private methods, and some instance level variables. Below is a pseudo code example. private int instanceLevelVar public void ...
2
votes
2answers
576 views

Scalability implications of converting stateless session beans to POJOs

Imagine a heavily-used service object that's implemented as an EJB 2.1 SLSB, and that also happens to be thread-safe in itself by virtue of having no state whatsoever. All its public methods are ...
1
vote
1answer
29 views

EJB 3 : Can't inject bean in client code, both of which are managed by the same container

@Local public interface EJBA{ // declares a method 'validate' } @Stateless public class EJBABean implements EJBA{ // implements the method 'validate' } class Model{ @EJB private EJBA ejbA; public ...
1
vote
1answer
25 views

Is the ArroundInvoke method gets invoked if it were invoked from another ejb method?

I've the following case: @Interceptors(MyInterceptClass.class) public void ejbMethod1() { } @Interceptors(MyInterceptClass.class) public void ejbMethod2() { ejbMethod1(); } Is calling ...
1
vote
1answer
216 views

EJB3 DAO stateless session bean design (use JDBC connection)

I'm designing a DAO layer for a EJB3 project, they are stateless session bean. For some reason, part of DAOs won't use JPA, they access database directly with JDBC. So instead of injecting ...
1
vote
1answer
83 views

EJB - Serialization error while doing a JNDI lookup for a Stateful Session Bean

In my EJB project I have this Session Bean (Stateful): @Stateful public class StatefulShopCart implements StatefulShopCartLocal, Serializable { private static final long serialVersionUID = 1L; ...
1
vote
1answer
81 views

Hibernate 3.6.6.Final (JBoss 6.1) merge() transient object tree

I try to save an object tree with Hibernate's merge() method. Entity Auftrag (means "order" in English) contains a collection of Auftragsposition objects, mapped with cascade="all-delete-orphan. The ...
1
vote
0answers
95 views

How to get user name in session bean when redirected to error page?

Can anyone tell me how to get user name in session bean correctly? In our application we do it by calling this method: @Resource private EJBContext _context; private String getUserName() { ...
1
vote
1answer
72 views

Stateless EJB with more injected EJBs instances

I know Stateless EJBs are stored in a pool and instantiated as needed, my question is, what happens when there are more EJB dependencies, for example with something like this: @Remote @Stateless ...
1
vote
3answers
217 views

Transaction TimeOut EJB impact on the thread

A question on EJB: Lets say I have a session bean which has an infinite Loop. It is running under a EJB tranaction. Now when the transaction of the EJB timesout, will that cause the infinite loop ...
1
vote
1answer
551 views

EJB Stateless Session Bean - could not create error

Let me start by pointing out that while I've been using Java SE for a while now this is my first foray into Java EE territory. I'm using Netbeans 6.9 and the Netbeans code generator to do most of the ...
1
vote
1answer
197 views

Debugging Hibernate “Session is closed!” - abuse of SSBs?

(First of all, this is not my code. Secondly, to protect the guilty, I have changed the class names to hide anything specific to my employer, so if things don't correspond with each other that's ...
1
vote
2answers
718 views

Can i make my own Singleton Stateless Bean with EJB 3.0?

Now, with EJB 3.1, we can find the javax.ejb.Singleton annocation that can ensure that this bean is going to be singleton. Is there a way that i can ensure singleton using stateless beans in EJB 3.0 ...
1
vote
2answers
540 views

EJB3 + JSF2; Stateless like a Statefull

I've a stateless session bean in an ejb container. If I invoke it from a jsf2 form it works fine, but if I recall the form again it shows me the same data I've inserted before. It happens even if I ...
1
vote
3answers
172 views

Stateless Session Bean

Do I package a stateless session bean in a war file or a ear file for deployment?
1
vote
1answer
122 views

Safe to store reference to Entity Bean after session ends?

This is a pretty newbie question- please know I'm aware of that. I have a stateless session bean that needs to load up some data once and cache it locally in a static variable for use by all ...
1
vote
2answers
694 views

Weblogic 10.3.0 : Losing a stateless session bean in the bean pool

We have a strange situation where we lose a Stateless SessionBean in a Bean Pool in Weblogic 10.3.0. Since we only have one bean in the pool, this effectively hangs all incoming calls. We do not want ...
1
vote
2answers
131 views

need help in EJB stateless beans

I am new to EJB. I have a requirement of calling a method of remote stateless bean and setting a value, before calling any method on the same bean. The value set from first method call should be ...
1
vote
2answers
191 views

What does a stateless session bean provide over just a normal class?

What would a stateless session bean provide over just a regular class that has the same methods? It seems that a stateful session bean can be distributed out of the box and the container will make ...
1
vote
2answers
160 views

Do you really need stateless session beans in this case?

We have a project with a pretty considerable number of EJB 2 stateless session beans which were created quite a long time ago. These are not the first-line beans which are accessed from our client via ...
1
vote
1answer
468 views

Can you run EJB 2.1 beans in OSGi?

I have a J2EE 1.3 app that uses EJB 2.1 session and entity beans. Currently this app runs as an EAR file on JBoss. I'd like to switch to the SpringSource dm Application Server because of all the ...
0
votes
1answer
35 views

inject stateless bean into a singleton bean

I have this requirement: I have a singleton bean and I have a method annotated with @PostConstruct where I perform some initialization. One of the initialization is to read some values from a DB, so I ...
0
votes
1answer
76 views

EJB3. How JNDI lookup works

I'm building little framework for data processing with EJB 3. I have Entity Access Object tier which abstracts from data source. Now I need some kind of factory which will give me right bean to query ...
0
votes
0answers
32 views

Exception in getting Hibernate session using EJB 2 , Jboss 4.2.3 GA , Stateless SessionBean

I am using EJB 2 and I have a stateless session bean trying to use Hibernate session to connect to database. The problem is, I am getting exception org.hibernate.HibernateException: Unable to locate ...
0
votes
2answers
176 views

Why we get java.lang.ClassCastException: $Proxy, in jndi lookup of a Stateless Session Bean in Glassfish 3.1.1

We are having problems looking up a Local Stateles session Bean instance in a utility class. We always get a ClassCastException: $ProxyXYZ (XYZ is any number) We are using Glassfish 3.1.1, JPA 2, ...
0
votes
1answer
52 views

what happens when pool of stateless beans runs out

we know that the stateless sessions beans (JEE5 context) can be pooled. I was wondering what happens when the Server's pool of stateless session beans has no more instances left and another client ...
0
votes
2answers
293 views

How to invoke a method in a session bean from an Android client?

I want to know whether it is possible to create an Android application to communicate with a session bean and invoke a method. if so can anybody explain how? or else can i invoke that method in the ...
0
votes
2answers
235 views

How to acccess an EJB?

I am trying to develop a Basic EJB3 application on JBOSS 4.2 in Eclipse I have created an EJB project in eclipse. The following are my remote and local interfaces. package com.test; import ...
0
votes
1answer
211 views

How to remove EJB2.1 Stateless session bean

Greetings all, I have a question: How to remove an EJB session bean (especially Stateless beans) ? There's of course remove() method, however it cannot be called while the session object is in ...
0
votes
1answer
564 views

Servlet receives empty object from Remote EJB3 Session Bean

I'm sure this is a beginner error... So I have a JEE6 application with entities, facades (implementing the persistence layer) and Stateless Session Beans (EJB3) with Remote interfaces (providing ...
0
votes
1answer
440 views

WebSphere 5.1: Setting JDBC datasource connection as “unshareable”

L.S. Our DB provider has suggested that we use "unshareable" connections when connecting to their DB. I have a reasonable understanding about the pros/cons of using "unshareable" connections, and our ...
0
votes
1answer
507 views

How I can use Java Reflection API within EJB 3 entity?

I do the following steps with eclipse 3.5 ,JBoss 4.2 ,EJB3 but I face class not found exception 1.compiling this code to foo.jar file package mypackage.foo; import myejbpackage.ejb.fooInterface; ...
0
votes
2answers
1k views

Should MDB call remove() after using stateless session bean?

Our years-old WebLogic J2EE application has a message-driven bean which makes use of a stateless session bean. The MDB onMessage method gets the home interface of the stateless session bean and calls ...
-1
votes
1answer
38 views

How does a web server/container treat a POJO in respect to other classes like EJB's and Entities?

I'm trying to use plain old java objects(POJO)'s and regular class files where needed and only use EJBs when I need the functionality that they add such as asynchronous calls, pooling, etc. I'm ...