Top "Ejb-3.0" questions

This tag is used for question related to the session bean and message-driven bean component types of the EJB 3.0 programming model.

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 …

unit-testing jakarta-ee junit ejb-3.0
Getting ParseException on Transport.send(message)

For some reason I'm getting a javax.mail.internet.ParseException when I call Transport.send() on a MimeMessage. This worked …

java email ejb-3.0 jakarta-mail parseexception
EJB 3.0 exceptions handling

A quote from the EJB specification: If the bean method encounters a system exception or error, it should simply propagate …

java jakarta-ee exception ejb ejb-3.0
Unit Testing EJB 3.1

I am doing a small research on Unit Testing of EJB 3.1. At the end my goal is to produce a …

unit-testing ejb-3.0 mockito ejb-3.1 openejb
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 …

java jakarta-ee ejb-3.0 ejb
WebSphere 7. Inject EJB from another application

I am trying to inject an EJB with the @EJB annotation: when I inject an EJB into another EJB in …

java websphere ejb-3.0
Can @Resource be used to inject primitives in EJB3.0?

Using Glassfish, I can setup a string jndi entry: JNDI name: "com/xyzcompany/echo/EchoServiceBean/viewName" Factory Class: org.glassfish.…

java glassfish ejb-3.0 java-ee-6 ejb-3.1
Relationship 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 …

jpa jakarta-ee ejb ejb-3.0
Weblogic 10.3.5 & EJB 3 JNDI names

Could someone tell me where I can find infos on the default JNDI naming for EJB 3 ? Does Weblogic use portable …

ejb-3.0 jndi weblogic11g
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 …

java jakarta-ee mocking ejb-3.0 maven-plugin