Tagged Questions

JSR 220: Enterprise JavaBeans 3.0 The Enterprise JavaBeans architecture is a component architecture for the development and deployment of component-based business applications. The purpose of Enterprise JavaBeans (EJB) 3.0 is to improve the EJB architecture by reducing its complexity from the ...

learn more… | top users | synonyms (3)

41
votes
11answers
12k views

Should I use EJB3 or Spring for my business layer?

My team is developing a new service oriented product with a web front-end. In discussions about what technologies we will use we have settled on running a JBoss application server, and Flex frontend ...
17
votes
5answers
1k views

Most important problem solved by EJB 3?

The scenario You have developed a webapp using EJBs version 3. The system is deployed, delivered and is used by the customer. If you would have to rewrite the system from scratch, would you use ...
16
votes
6answers
5k views

Why do we need separate Remote and Local interfaces for EJB 3.0 session beans

I was wondering why do we need separate Remote and Local intefaces for EJB 3.0 Session beans. I guess most of the time they would both be defining the same contract. Why cant I have a common interface ...
15
votes
5answers
17k views

JBoss: What does the warning EJBTHREE-1246 from the InterceptorRegistry mean?

I am currently developing an EJB 3.0 based application on the JBoss AS 5.0.0.GA and just recently the following warning showed up in the server log: 09:50:19,735 WARN [InterceptorsFactory] ...
15
votes
7answers
6k views

EJB3 Transaction Propagation

I have a stateless bean something like: @Stateless public class MyStatelessBean implements MyStatelessLocal, MyStatelessRemote { @PersistenceContext(unitName="myPC") private EntityManager ...
14
votes
4answers
1k views

Why should i use EJB? [closed]

As we all know that EJB's in 3.1 or 3.0 are simple POJOs. You just need to give annotations here and there and it gets converted to EJB from simple class. So, now my question is why should i use EJBs ...
12
votes
2answers
5k views

What is the best way to unit test a EJB3 component without having to deploy the component

I would like to have a JUnit (or other) system where the enterprise beans can be tested in a mock environment so that all resources/beans and so on are injected locally. The enterprise beans should ...
11
votes
9answers
3k views

What's the best way to share business object instances between Java web apps using JBoss and Spring?

We currently have a web application loading a Spring application context which instantiates a stack of business objects, DAO objects and Hibernate. We would like to share this stack with another web ...
10
votes
7answers
683 views

What is an Enterprise Java Bean really?

On the Tomcat FAQ it says: "Tomcat is not an EJB server. Tomcat is not a full J2EE server." But if I: use Spring to supply an application context annotate my entities with JPA annotations (and use ...
10
votes
11answers
2k views

Singleton in Java App Server.. How bad of an idea is this?

I am currently working on some older java code that was developed without App Servers in mind. It is basically a bunch of "black box code" with an input interface, and an output interface. ...
9
votes
1answer
3k views

Difference between a “jta-datasource” and a “ resource-local ” datasource?

The terms "jta-datasource" and "resource-local datasource" are a little vague to me. I'm putting down what I am understanding ( or assuming ) and I'd like you to say where I'm right / wrong. The ...
9
votes
5answers
1k views

How to receive Email in Java EE application

Obviously it's not so difficult to send out emails from a Java EE application via JavaMail. What I am interested in is the best pattern to receive emails (notification bounces, mostly)? I am not ...
9
votes
7answers
13k views

“detached entity passed to persist error” with JPA/EJB code

I am trying to run this basic JPA/EJB code: public static void main(String[] args){ UserBean user = new UserBean(); user.setId(1); user.setUserName("name1"); ...
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 ...
9
votes
4answers
2k views

How to access the file system from an EJB 3?

I would like to know how can I access the file system from an EJB 3 bean? I searched the Internet on the subject and haven't found a good answer. Some suggest using the java.io/java.nio even though ...
8
votes
4answers
4k views

Best current framework for unit testing EJB3 / JPA

Starting a new project using EJB 3 / JPA, mainly stateless session beans and batch jobs. I've used JUnit in the past on standard Java webapps and it seemed to work pretty well. In EJB2 unit testing ...
8
votes
4answers
2k views

How do you unit test Java EE code?

I want to ask for your prefered way to test Java EE code? I found only three project, that are trying to help to code unit tests in Java EE environment: http://jakarta.apache.org/cactus/ : Last ...
8
votes
3answers
711 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
6answers
1k views

Is using data transfer objects in ejb3 considered best practice

Although obviously not all scenarios can be covered by a single design, is it generally felt now that ORM classes should be passed to and fro between the presentation and business layer (either local ...
7
votes
2answers
385 views

Which will be a good book for EJB 3.0?

I want to study EJB 3.0, but I don't have any idea which I book should buy. Could anyone please tell me the name of any good for EJB 3.0 study?
7
votes
5answers
2k views

Where can I find good unit testing resources for EJB and J2EE?

Which online resources, tutorials or books can you recommended to get started with unit testing J2EE / EJB3 applications? So far I have found ejb3unit, Jakarta Cactus (retired 2011/08) and the Maven ...
6
votes
1answer
226 views

What's the point of using @Scoped with EJBs?

Usually I'm using @RequestScoped or @SessionScoped (from javax.enterprise.context) to inject objects (for instance in faces beans) using @Inject. I am also using EJBs. As I understood, a set of ...
6
votes
2answers
377 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
6answers
522 views

Hibernate and JPA, what to use, where?

Could someone please explain to me what the main differences are between JPA and Hibernate? Where to use Hibernate ? Where to use JPA? Why not entity bean?
6
votes
1answer
1k views

Stateful EJBs in web application?

I never used stateful EJBs. I understand that a stateful EJB can be useful with a java client. But i wonder: in which case to use them on a web application? And how? Should we put these stateful ...
6
votes
2answers
2k views

Eager / auto loading of EJB / load EJB on startup (on JBoss)

EJBs seem to be loaded lazily - whenever accessed. However, I want to initialize them eagerly - i.e. whenever the container starts-up. How is this achieved (in JBoss in particular) This topic gives ...
6
votes
2answers
4k views

Elegantly handling constraint violations in EJB/JPA environment?

I'm working with EJB and JPA on a Glassfish v3 app server. I have an Entity class where I'm forcing one of the fields to be unique with a @Column annotation. @Entity public class MyEntity implements ...
6
votes
4answers
5k views

Inject a EJB into a JSF converter with JEE6

I have a stateless EJB that acceses my database. I need this bean in a JSF 2 converter to retreive an entity object from the String value parameter. I'm using JEE6 with Glassfish V3. @EJB annotation ...
6
votes
4answers
3k views

Is it safe to inject an EJB into a servlet as an instance variable?

We all know that in the web tier there is the possibility that only a single instance of a given Servlet exists which services multiple requests. This can lead to threading issues in instance ...
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 ...
5
votes
1answer
330 views

EJB 3.1 Singleton + JPA + JSF design advice needed

Given: simple JSF webapp (no Seam), having JSF beans calling few EJB's which in turn load and persist JPA entities. What I want to is to use @Singleton annotation for ejb's and inject EntityManager ...
5
votes
3answers
392 views

Migrating from EJB3 to Spring, Hibernate

We have a desktop based application based upon EJB3, Oracle 10 and JBoss 4. This was created around three years back. JPA entities were used for ORM and the business logic was implemented in the ...
5
votes
3answers
368 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
2answers
244 views

Using stateless EJB beans in an Entity Bean

Obviously using stateless EJB beans in an entity bean smells, but please consider a scenario as follows and tell me if you know of a better solution: I have an InvoiceTemplate Entity Bean with field ...
5
votes
5answers
1k 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
574 views

JSF2: Open Session in View with EJBs?

Does it make sense to talk about the Open Session In View Pattern within JSF2 applications? My app has JSF2 Managed Beans calling Business Service EJBs that do all the db-related stuff (there's a DAO ...
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
5answers
193 views

Good book suggestions for building enterprise software

Enterprise software are built using technologies/softwares/terminologies/APIs such as EJB, JBoss, Seam, Hibernate(JPA), Maven, Eclipse, Spring, JTS, JMS, JNDI etc. I know there are great books out ...
5
votes
2answers
3k views

Detach an entity from a JPA persistence context (JPA 2.0 / Hibernate / EJB 3 / J2EE 6)

I wrote a stateless EJB method allowing to get an entity in "read-only" mode. The way to do this is to get the entity with the EntityManager then detach it (using the JPA 2.0 EntityManager). My code ...
5
votes
1answer
5k views

EJB3 transaction rollback

I'm using CMT in EJB3 state-less session beans. Also I've created my own Exception having the annotation "@ApplicationException (rollback=true)". Do I have to use "context.setRollbackOnly()" when I ...
5
votes
5answers
1k views

EJB3 - @Column(insertable=“false”) question

I'm building a J2SE application with EJB3 and an Oracle Express Edition DB. My problem is like that - I set an EntityBean in my project which matches a table in the DB. The table contains a column ...
5
votes
7answers
896 views

How to Deploy Simple Java Projects into EAR?

I am using MyEclipse and I use an Enterprise Application Project (EAP) that automattically deploys my Web and EJB Projects. These projects use some other projects that are just POJOs, "simple" java ...
5
votes
2answers
622 views

J2EE/Glassfish Application Logic

I am trying to understand where some of my application logic should go in my J2EE Application. I am new to J2EE and am looking at loading a lot of unstructured data from a legacy database and building ...
5
votes
3answers
1k views

How to specify name for resource annotations in compile time?

Our code has something like this: @Resource(name = "java:comp/resource/foo/bar/ONE_QUEUE") private Queue queue; However, in one deployment scenario the queue annotation should look like this: ...
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
5answers
3k views

@Cache annotation usage error

I added the following annotation to enable cache to one of my EJB3 entities, to test caching with ehCache, where I use Hibernate as the persistence provider: .... import ...
5
votes
5answers
10k views

JNDI lookup of EJB3 inside an EAR file on Glassfish

I have an EAR file with a bunch of JARs in it, and one of these JARs contains Local Session Beans (EJB3). I need to perform a JNDI lookup of these Session Beans from within an unmanaged POJO, also ...
5
votes
2answers
1k views

Why does query caching with Hibernate make the query ten times slower?

I'm currently experimenting with EJB3 as a prestudy for a major project at work. One of the things I'm looking into is query caching. I've made a very simple domain model with JPA annotations, a ...
5
votes
3answers
1k views

Project architecture/organization on Java EE application with EJB 3.0, JPA, Dynamic web projects on JBoss

I have a webapp with different Dynamic Web Projects, each of them generally containing an EJB Project. We want to keep them interacting, as in using beans and classes from each other's EJBs through ...
4
votes
0answers
66 views

JPA/Hibernate emits no UPDATE on commit in EJB/Seam environment

I have a Seam 3 sandbox application using JBoss 7, Hibernate as default JPA implementation and as JSF as web front end. I have the problem, that the SQL UPDATE is swallowed by default. My stateful ...

1 2 3 4 5 23