Enterprise JavaBeans (EJB) is a managed, server-side component architecture for modular construction of enterprise applications. The EJB specification is one of several [Java] APIs in the [Java EE] specification.

learn more… | top users | synonyms

41
votes
8answers
12k views

Why are Data Transfer Objects an anti-pattern?

I've recently overheard people saying that DTOs are an anti-pattern. Can someone please explain why? What are the alternatives?
36
votes
2answers
8k views

How do CDI and EJB compare? interact?

I'm having a tough time understanding how the two interact and where the boundary between them lies. Do they overlap? Are there redundancies between them? I know there are annotations associated with ...
27
votes
5answers
12k views

Should I use @EJB or @Inject

I have found this question: What is the difference between @Inject and @EJB but I did not get any wiser. I have not done Java EE before nor do I have experience with dependency injection so I do not ...
23
votes
4answers
15k views

Stateless and Stateful Enterprise Java Beans

I am going through the Java EE 6 tutorial and I am trying to understand the difference between stateless and stateful session beans. If stateless session beans do not retain their state in between ...
23
votes
2answers
9k views

EJB's - when to use Remote and/or local interfaces?

I'm very new to Java EE and I'm trying to understand the concept of Local interfaces and Remote interfaces. I've been told that one of the big advantages of Java EE is that it is easy to scale (which ...
20
votes
3answers
16k views

Cannot instantiate the type List<Product>

I have the following code: List<Product> product = new List<Product>(); The error: Cannot instantiate the type List<Product> Product is an Entity in my EJB project. Why I'm ...
17
votes
3answers
11k views

Java Component based vs Request based frameworks

I was recently asked in an interview - In java, how do you compare component based frameworks to request based frameworks? I explained EJB as an example of Component based framework and Struts as a ...
17
votes
2answers
5k views

Is it safe to start a new thread in a JSF managed bean?

I could not find a definitive answer to whether it is safe to spawn threads within session-scoped JSF managed beans. The thread needs to call methods on the stateless EJB instance (that was ...
17
votes
4answers
9k views

Difference between Javabean and EJB

Just a simple question from a relative Java newbie: what is the difference between a JavaBean and an EJB?
17
votes
4answers
4k views

JSF2 - backed by EJB or ManagedBean?

As I am learning JSF2, I realized I am not sure what the backing components should be. From design point of view, what is the difference between EJBs and @ManagedBeans? In the end I am going to use ...
16
votes
2answers
10k views

@Inject, @EJB, @Local, @Remote, @LocalBean, etc… : confused?

I have the following configuration: 1 EAR on one GF containing 2 EJB-JARs with EJB components. 1 WAR on another Glassfish server (=> other JVM) containing web components accessing the EJB ...
15
votes
3answers
22k views

Web Services vs EJB vs RMI, advantages and disadvantages?

My web server would be overloaded quickly if all the work were done there. I'm going to stand up a second server behind it, to process data. What's the advantage of EJB over RMI, or vice versa? ...
14
votes
4answers
6k views

.NET - vs EJB

What is the comparable technology of EJB (Enterprise Java Beans) in .net?
14
votes
1answer
4k views

What is local/remote and no-interface view in Ejb?

I am trying to understand what the purpose and why we need the different client views in EJB. Could someone try to explain?
13
votes
2answers
2k views

Thread.sleep() in an EJB

I know that messing with threads inside an EJB is a big no-no, but I would just like to ask for advice on how handle this case. My EJB is calling an external Web service which may sometimes return a ...
12
votes
4answers
7k 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 ...
12
votes
1answer
19k views

What to put into jta-data-source of persistence.xml?

What value should I place into <jta-data-source> of my persistence.xml? In glassfish admin panel I created a datasource name "abcDS". In my jndi.properties (inside src/test/resources) I defined ...
12
votes
3answers
1k views

How to enable Kerberos authentication for remote EJB call on WebSphere?

My application is a stand-alone Swing client invoking EJB Stateless Session beans thanks to classical JNDI lookup and RMI-IIOP method calls. It is started as a Java WebStart application. My aim is to ...
11
votes
5answers
7k views

What is the difference between EJB, hibernate, spring and JSF?

I am very confused with different java frameworks. I want to create a java server project to offer some Restful web-service, but I really dont know which framework I should choose. What is the ...
11
votes
2answers
7k 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 ...
11
votes
2answers
864 views

Use Arquillian to test secure EJB

I am using JBoss 6.1 and I got a secure EJB having methods annotated with @RolesAllowed("Admin"). I am trying to test this method with Arquillian. I have done the EJB log in successfully in the ...
10
votes
5answers
14k views

EJB 3.1 @EJB Injection into POJO

Being a complete turbot this afternoon and cant seem to find the answer anywhere. With the new EJB 3.1 spec is it possible to inject an EJB into a pojo? I know in EJB 3.0 the @EJB annotation could ...
10
votes
3answers
6k views

EJB 3.1 @LocalBean vs no annotation

this might seem to be an elementary question but I couldn't find the answer anywhere and I need to know. I understand the difference between local view, remote view and no-interface view. I just ...
10
votes
4answers
7k views

I need EJB3 tutorial

i want to learn EJB3. Anyone pls suggest some good tutorial website for EJB3. Thank you
10
votes
2answers
847 views

hooking into @EJB or @PersistenceContext injection in JAX-RS unit tests

I'm enjoying learning JAX-RS and Jersey, but I've hit a roadblock trying to test a simple resource that needs a DAO injected, something like this: @Stateless @Path("simple") public class ...
9
votes
3answers
5k views

JPA: question about merging an entity before removing it

I know I have to merge the entity before removing it, but I never thought I have to do it inside EJB. First I have these: e = (Event) scholarBean.merge(e); scholarBean.remove(e); in my managed ...
9
votes
3answers
2k views

JSF2, can I use @EJB to inject a service into a @FacesConverter?

I have a JSF2 project (on GlassFish 3.1). I'm using @EJB to inject services into managed beans. Now I have a converter annotated with @FacesConverter. I tried to do this (below) but it doesn't ...
9
votes
3answers
3k views

Inject EJB into domain object with Java EE 6

How can I inject an EJB into a domain object (an JPA entity) with Java EE 6?
9
votes
1answer
2k views

OSGI runtime inside traditional Java EE server

I understand it should probably be other way round (OSGI runtime hosting Java EE servers), as it is apparently already possible with glassfish. However, our clients have extensive experience in ...
9
votes
5answers
3k views

Learn EJB 3.0 really fast

I am in an urgent need to put myself up to speed with EJB 3.0, like in a couple of days or so. Please don't ask... I have some years behind me as a programmer and worked with different technologies: ...
9
votes
3answers
3k views

Dependency Injection EJB 3 - too many choices?

we are starting a new project based on EJB 3.0. i have a "spring" based background (and love it), so for me loose coupling and testability is a big must have. this post should not be about "ejb vs. ...
8
votes
6answers
2k views

Comparing OpenEjb and Glassfish

Dear all, can we replace Glassfish with Tomcat/OpenEJB for lighter applications? What is the performance of OpenEJB comparing to glassfish as EJB container. What is the restrictions of OpenEJB ...
8
votes
2answers
2k views

Default EJB transaction mode for asynchronous methods?

When I have an @Asynchronous method in an EJB, and I don't specify the @TransactionAttribute, then how exactly does the container handle the transaction boundaries? Obviously, it can't use the ...
8
votes
3answers
700 views

How to handle internal calls on Spring/EJB/Mockito… proxies?

As you many know when you proxy an object, like when you create a bean with transactional attributes for Spring/EJB or even when you create a partial mock with some frameworks, the proxies object ...
8
votes
1answer
3k views

How to use @EJB, @Inject and/or @Autowired in @FacesValidator

I need to inject a Spring managed bean in my @FacesValidator. I tried the following: @FacesValidator("emailExistValidator") public class EmailExistValidator implements Validator { @Autowired ...
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 ...
8
votes
1answer
3k views

What is the relationship between java:comp/env and java:global?

What is the relationship between java:comp/env and java:global (regarding 3.1 spec)? Seems like java:comp/env contains specific to EJB references. What means "specific" in this case?
8
votes
2answers
7k views

Why use Facade pattern for EJB session bean

I want to ask what is the reason to use Facade Pattern when access EJB Session Bean. In my Netbeans 6.9.1, if I do New > Sessions Bean for Entity Classes, and let say that I select User entity, then ...
8
votes
2answers
13k views

@EJB annotation in clients

Using NetBeans, I do the following in the class containing main(), and it works: import javax.ejb.EJB; public class Master { @EJB TestBeanARemote x; public static void main(String[] ...
8
votes
1answer
4k views

sessionscoped managed bean vs stateful ejb

If I have a @ManagedBean that's @SessionScoped, why would I use a @Stateful EJB? I used it before for shopping carts and maintaining a conversational state, but since a managed bean will be kept ...
8
votes
3answers
1k views

How to get notification about EJB deployment (to set up a timer)?

I'm deploying an EJB which should set a timer and be triggered by it every 24 hours. But where should I set the timer? @PostConstruct does not help -- this is a session bean, so post-construct method ...
8
votes
3answers
3k views

Why throwing an EJBException is a “recommended” practice?

I keep getting this "suggestion" from many fellow developers over and over again. In my experience I've found that EJBExceptions are well-suited for "end of the world" from the bean instance ...
8
votes
2answers
4k views

EJB Vs WebService? Performance point of view

Well We have situation to decide now. I thought stackoverflow is best place to discuss. Background: We have 2 JVMs Enterprise Application server and one application deployed on each of them. we need ...
8
votes
2answers
4k views

Java EE video lectures [closed]

There are plenty of java videos and video lectures floating about, but does anyone know of any that deal specifically with Java EE? For my own point of view I'd be more interested in the EJB side of ...
7
votes
5answers
1k views

Is EJB still alive?

Do you still use session or entity EJBs in your project? Why?
7
votes
3answers
4k views

How does UserTransaction propagate?

I have a stateless bean with bean-managed transaction and a method like this: @Stateless @TransactionManagement(TransactionManagementType.BEAN) public class ... { @Resource private ...
7
votes
6answers
5k views

How to start a background process in Java EE

I want to start a background process in a Java EE (OC4J 10) environment. It seems wrong to just start a Thread with "new Thread" But I can't find a good way for this. Using a JMS queue is difficult ...
7
votes
1answer
7k views

JSF managed-bean EJB injection

I have an EJB (PersonManager) in the Enterprise Application modul, which injects another EJB (Person): @Stateful public class PersonManager implements PersonManagerLocal { @EJB private ...
7
votes
4answers
1k views

Boundary between EJB 3.0 and JPA?

that may seem obvious but I've seen contradictory statements : Is JPA part of EJB 3.0 ? I'm no specialist and It's quite confusing for me. If so, JPA manipulates Entity Beans ? These entity beans ...
7
votes
2answers
3k views

Using the client jar in EJB 3 and design patterns

I'm new to EJB 3 and pretty confused with some doubts which Google didn't provide with a satisfactory answer. I'm trying to create a framework with some base classes and some utility methods which my ...

1 2 3 4 5 54