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.
21
votes
8answers
5k 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?
12
votes
3answers
247 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 ...
11
votes
1answer
178 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 ...
11
votes
2answers
650 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 ...
11
votes
3answers
5k 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 ...
9
votes
3answers
788 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 ...
9
votes
2answers
2k 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 ...
9
votes
3answers
4k 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 ...
8
votes
3answers
211 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
3answers
1k 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?
8
votes
3answers
678 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 ...
7
votes
4answers
308 views
Java EE 6: How to add web module on top of application client
Technology(Java EE 6 with Glassfish 3.1, Netbeans 7.0)
I have an application client that access a db via JPA. No EJB is involved. Now I need to add an web interface for this application client. So I ...
7
votes
4answers
2k 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 ...
7
votes
5answers
7k 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 ...
7
votes
3answers
9k 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?
...
7
votes
4answers
2k views
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
1k views
QuartzScheduler injection in JBoss AS 6
How can i inject QuartzScheduler service into my Stateless bean on JBoss AS 6 ?
Quartz service does start during JBoss AS 6 startup
00:58:38,025 INFO [QuartzScheduler] Scheduler meta-data: Quartz ...
6
votes
7answers
333 views
What use are EJBs
I'm currently learning Jave-EE, having plenty of C++ experience and having learned Java SE. I don't understand the purpose of Enterprise Java Beans; can someone clarify this for me. I'm not interested ...
6
votes
3answers
821 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 ...
6
votes
2answers
648 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 ...
6
votes
2answers
1k 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 ...
6
votes
1answer
1k views
OSGI runtime inside traditional J2EE server
I understand it should probably be other way round (OSGI runtime hosting J2EE servers), as it is apparently already possible with glassfish.
However, our clients have extensive experience in ...
6
votes
6answers
1k 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 ...
6
votes
2answers
359 views
weblogic appc: include generic arguments in the ejb client jar
I have an EJB returning a list of my own ValidationMessage objects:
@Remote
public interface Intf {
List<ValidationMessage> validateFile();
}
I'm generating EJB client JAR with weblogic's ...
6
votes
3answers
1k 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 ...
6
votes
2answers
3k views
Java EE video lectures
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 ...
6
votes
6answers
2k views
Thread in App Server
I have a Java program/thread that I want to deploy into an App Server (glassfish). The thread should run as a "service" that starts when the App server starts and stops when the App Server closes. ...
6
votes
5answers
1k views
5
votes
1answer
308 views
Message-driven bean (EJB3) in WebSphere 7, XA transactions, Error handling
I am a relative newb to EJB. Background: I have an MDB using the WebSphere default messaging provider receiving MapMessages that has a java.sql.DataSource to do some work, using preparedstatement, ...
5
votes
2answers
156 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 ...
5
votes
1answer
220 views
Disabling EJB Timer (Glassfish 3.1, JEE 6)
We have a VIP (BIG-IP) that actually moves the web service requests to two nodes each with its own glassfish server 3.1 and our services deployed. So it is not a true glassfish cluster.
My problem is ...
5
votes
2answers
212 views
Java EE: Creating and deleting socket listeners dynamically from the domain model
I am creating a Java EE application that allows users to add/remove "socketinfo" tables (stored in a database) from a web interface. If the user enables a "socketinfo" from the web interface, the ...
5
votes
3answers
902 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. ...
5
votes
1answer
2k 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 ...
5
votes
3answers
343 views
What features does EJB3 bring and also how does EJB3 stack up with the Spring Framework?
I have never worked on ejb, when I started programming Spring was already arrived and all my projects have been with Spring only, recently I had one interview and they wanted knowledge of EJB3.0 and ...
5
votes
5answers
2k 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 ...
5
votes
1answer
3k 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 ...
5
votes
3answers
331 views
EJB testing strategies?
I'm working on a Java EE 6 application. When I started out, I was writing tests for my EJB classes by manually instantiating the EJB, then manually adding the members that normally get provided by ...
5
votes
2answers
897 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 ...
5
votes
5answers
973 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: ...
5
votes
1answer
1k views
EJB 3 Session Bean Design for Simple CRUD
I am writing an application that's sole purpose in life is to do CRUD operations for maintaining records in database. There are relationships between some of the tables/entities. Most examples I've ...
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 ...
5
votes
2answers
270 views
Is there an Open-Source Project that uses EJB?
I started reading recently about J2EE technologies and mainly EJB. Although I located quite a lot of Open Source Application Servers, I haven't seen any actual application that uses some version of ...
5
votes
3answers
1k views
Unit Testing an EJB
I'm looking for a way to apply TDD to Session Beans.
can anyone provide advices and links on how to unit test them ?
how to use JUnit to do so ?
P.S : I'm new to Test Driven Development and ...
4
votes
2answers
51 views
Why Stateless EJBs are pooled?
What is the reason why the Application Servers pool the Stateless EJBs?
I can understand that it is usefull to control the workload of the application for incomming invokations, but this only ...
4
votes
4answers
88 views
EJBs and Modern Java Development
I'm new to Java EE and see that EJBs are alive and well within the pure Java/Oracle community. However everyone at work makes a disgusted look on their face whenever someone else even utters the ...
4
votes
4answers
120 views
Asynchronous execution in Java EE
I'm learning Java EE currently (moving from SE) and I am confused about asynchronous execution in Java EE environment.
Basically what I understand creating Thread or Timer is not exactly recommended. ...
4
votes
1answer
151 views
@Asynchronous not resulting in async invocation of EJB method in JBossAS7
I'm struggling to figure out why an @Asynchronous method in my EJB isn't actually being invoked asynchronously. I'm running on JBoss AS 7 using CDI (with beans.xml) in a JSF2 project with simple .war ...
4
votes
4answers
57 views
client view of very large collection of objects. How to optimize?
I have 3-tier EJB application, and I need to create a view on a thick client (desktop Java application) that shows a very large collection of objects (over 5000 orders). Each object has child ...