Top "Stateless-session-bean" questions

When to use Stateful session bean over Stateless session bean?

A stateful session bean is defined as follows: Stateful Session Beans The state of an object consists of the values …

jakarta-ee ejb stateless-session-bean stateful-session-bean
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 …

java ejb-3.0 weblogic weblogic-10.x stateless-session-bean
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 …

java jakarta-ee glassfish stateless-session-bean
jndi binding for local and remote stateless bean

I'm trying to implements an EJB3 stateless with a remote and local interfaces the problem is the local one is …

java jakarta-ee ejb-3.0 jndi stateless-session-bean
WELD-001408 Unsatisfied dependencies when injecting EntityManager

I have @Stateless bean which implements two interfaces (remote and local). I have also added @LocalBean anotation for accessing bean …

dependency-injection java-ee-6 cdi entitymanager stateless-session-bean
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 …

java ejb pooling stateless-session-bean
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 …

jakarta-ee java-ee-6 cdi ejb-3.1 stateless-session-bean
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 …

ejb java-ee-6 glassfish-3 stateless-session-bean
Java EE 6: How to call Stateful Session Bean from Stateless Session Bean?

I have a Stateful Session Bean (SFSB) which acts as authentication module. In the SFSB I store the current user …

java ejb stateless-session-bean stateful-session-bean
Transaction TimeOut EJB impact on the thread

A question on EJB: Let's say I have a session bean which has an infinite loop. It is running under …

java transactions ejb stateless-session-bean