Tagged Questions

JSR 318: Enterprise JavaBeans, Version 3.1 Enterprise JavaBeans is an architecture for the development and deployment of component-based business applications. Applications written using the Enterprise JavaBeans architecture are scalable, transactional, and multi-user secure. The Enterprise ...

learn more… | top users | synonyms (3)

9
votes
3answers
888 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 ...
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 ...
6
votes
2answers
525 views

What is the difference between @Inject and @EJB

I'm currently learning the new Java EE 6 component models and am confused with the latest dependency injection mechanism. So here are my questions: 1) What is the difference between @Inject and @EJB ...
6
votes
2answers
695 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 ...
5
votes
2answers
71 views

Does CDI make sense if there is no Web layer and hence no HTTP session?

The new JSR 299 "Contexts and Dependency Injection for Java EE" seems to be based on the concept of "Scope". The beans are created and associated to one of the supported Scopes: Application, Session ...
5
votes
2answers
190 views

Using EJBContext getContextData - is this safe?

I am planning to use EJBContext to pass some properties around from the application tier (specifically, a message-driven bean) to a persistence lifecycle callback that cannot directly be injected or ...
5
votes
1answer
93 views

Spanning user information across multiple EJBs

With javax.security.Principal you can retrieve the user information at any point by injecting the EJBContext with @Resource. What I am trying to do is add extra information which would be specific to ...
5
votes
2answers
196 views

In TDD, why OpenEJB and why Arquillian?

I'm a web developer ended up in some Java EE development (Richfaces, Seam 2, EJB 3.1, JPA). To test JPA I use hypersonic and Mockito. But I lack deeper EJB knowledge. Some may argue that we should ...
5
votes
3answers
176 views

Future<V> and Exception

How to ensure that the exception thrown by @Asynchronous method from EJB 3.1 methods are not silently eaten up by Future? I know one can use Future.get method to retrieve exception but it will wait ...
5
votes
1answer
622 views

Cannot run arquillian tests

I'm trying to use Arquillian for some unit tests, however I can't find why they fail when deployed using Maven. This is the class test: package com.ndeveloper.spec.test; import javax.inject.Inject; ...
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
1answer
3k views

unit testing EJBs with Maven 2 and Glassfish 3

I've been trying to set my application up so that I can unit test it's EJBs all day but I can't seem to get past what seems like a really simple problem. I have a standard Maven web application set ...
4
votes
1answer
70 views

EJB 3.1. Is @Local annotation needed?

So far, I almost always worked with no-interface EJBs and have a slight understanding about the need of @Local annotation. Consider this example: public interface MyBeanIntf { void doStuff(); } ...
4
votes
2answers
115 views

Is there any way to make the Embedded EJB container boot faster?

I'm doing my first Java EE web application using glassfish and netbeans. When I create a unit test that requires the embedded EJB Container it can take around 30s to load. I thought that was ...
4
votes
1answer
130 views

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 and thought the specific CDI @RequestScoped into @Stateless question merited its own ...
4
votes
1answer
198 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
2answers
270 views

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 easy to use solution for Unit Testing EJB 3.1. I do not have much knowledge with big EJB implementations ...
4
votes
1answer
188 views

Asynchronous EJB 3.1 methods and Transactions

I wrote a small test to understand asynchronized behavior in EJB3.1 using @Asynchronous annotation. It seems that: If the method exist in the same bean as the caller, Call is no longer ...
4
votes
1answer
133 views

Java EE Application Startup Failure

Is there any method to prevent a Java EE application from starting if an exception occurs during application initialization? I'm basically looking for a way to cause the application to enter a ...
4
votes
2answers
839 views

EJB 3.1 - Using @EJB inside an EJB - is it possible?

Is it possible to use @EJB inside another EJB? I'm trying to do this now, and my EJB is ending up null. I'll outline my problem in an example. @Stateless @LocalBean @Local(LoginServiceLocal.class) ...
4
votes
2answers
2k views

EJB 3.1 Embedded API - Unit test EJB + JPA entities

Has anyone done this or attempted to do this for a preexisting project? It seems there are two options to go with here, either using the embedded EJB API basically the following class ...
4
votes
3answers
740 views

EJB3 Remote vs Webservices, performances?

I'm planning to a webapp where every guy using it would have a client that would run computations on its computer (because these computations can't be done on the server, too much load...), and then ...
3
votes
1answer
40 views

EJB 3.1 : Singleton bean not getting injected inside another stateless bean though both beans are getting registered

Here is my bean that is trying to inject a singleton bean InformationService : @Path("/information/{name}") @Stateless (name="InformationResource") public class InformationResource { @EJB ...
3
votes
2answers
95 views

EJB 3.1: Does it allow injection of beans into resources not managed by the container?

I am using JBoss 6.1 and its not fully EJB 3.1 compliant. As of now, I can't inject an EJB into my Struts action classes (or in any non-Java EE Container-managed class) via @EJB, but will this be ...
3
votes
1answer
116 views

Possible to change ejb parameter at runtime for @Schedule annotation?

Probably a silly question for someone with ejb experience... I want to read and change the minute parameter dynamically for one of my EJB beans that uses the Java EE scheduler via the @Schedule ...
3
votes
1answer
129 views

How does @SessionScoped work with EJB? Is CDI only for web-tier?

How is the session defined in @SessionScoped CDI bean? Is this annotation valid only when called from Servlet container, where the session is well defined in form of HttpSession? If not, than how an ...
3
votes
1answer
215 views

EJB3.1 properties file injection

is there some simple way to inject Properties class loaded with a file from the classpath into EJB (3.1)? Something like this: @Resource(name="filename.properties", loader=some.properties.loader) ...
3
votes
2answers
210 views

If EJB exposed @Remote interface, but you inject the EJB bean instead of its Remote interface, will this trigger a remote or local invocation?

I have a EJB bean that exposed to two interface like below: Local interface is for my web app, and Remote interface is for my App Client @Stateless public class CoreMainEJB implements ...
3
votes
2answers
732 views

Can I use EJB Stateless Bean with CDI to maintain user session?

Based on this post http://www.adam-bien.com/roller/abien/entry/ejb_3_1_killed_the I use in my app @Named @Stateless bean for communication with a database (injecting EntityManager here) and display ...
3
votes
1answer
116 views

Is there an Exception that can be captured when an EJB client loses the connection to the Application Server?

I would like to create an exception handler for the specific case that happens when an EJB client application loses the connection with the application server. The code we are creating is able to ...
3
votes
2answers
360 views

EJB unit Test Case

Team, We need to do EJB 3.1 Unit Test cases. For that we are analyzing tools to do efficient testing. We are taking arquillian, cactus in consideration. Can anyone tell me which tool is suitable ...
3
votes
4answers
2k views

Jetty 8 + EJB 3.1 + JTA + CDI + JPA 2 stack?

Can anyone tell me if it is currently possible to "glue together" a partial Java EE 6 Web Profile over Jetty? I've found a lot of articles about integrating standalone EJB 3 containers, JTA ...
3
votes
1answer
573 views

The mystery of Java EE 6 annotations inheritance

I'm using inheritance with EJB in a few scenarios, sometimes with annotations in the super class like this generic entityDAO: public class JpaDAO<T>{ protected Class<T> entityClass; ...
3
votes
2answers
305 views

Is it possible to use EJB 3.1 in desktop applications?

Is this possible? Does anyone ever do this? I feel like I can lay out my application better if I use what I'm used to in web applications. Would it possible to use this and dependency injection? ...
3
votes
1answer
457 views

How does CDI injection work in MDBs and @Scheduled beans?

I'm working on a large Java EE 6 application that is deployed on JBoss 6 Final. My current tasks involve using @Inject consistently instead of @EJB, but I'm running into some problems on some types of ...
3
votes
4answers
2k views

Packaging EJB in JavaEE 6 WAR vs EAR

Starting a new project and would like to know the pros and cons of packaging EJB in a WAR vs EAR. Will JNDI still works when EJBs are in the WAR? efficiency? etc.? Thanks.
3
votes
2answers
369 views

throwing exceptions from EJB interceptors

Let's say I have an interceptor that looks smth like this: public class AuthorizationInterceptor { Logger log = Logger.getLogger(getClass().getName()); @AroundInvoke private Object ...
3
votes
1answer
300 views

Do I need to use @Remote when I want to expose an EJB to a different application on same app server?

I have a @Stateless @Local Bean successfully deployed in an ear. I can see the new EJB 3.1 standard global JNDI name when I browse the JNDI tree. (java:global/product/product-ejb/ProductManagement) ...
3
votes
2answers
663 views

Can the EJB 3.1 @Schedule be configured outside of the application code?

How can I configure a schedule intervals: @Schedule(persistent=true, minute="*", second="*/5", hour="*") outside of the application code? How can I configure it in ejb-jar.xml? Can I configure it ...
3
votes
1answer
419 views

Add JEE Security Roles dynamically without using deployment descriptor

I'm developing a Java EE 6 application using Glassfish 3.1, B06. To secure my app, i'm using a JDBCRealm and programmatic security. This works fine to check username and password. But when it comes to ...
3
votes
3answers
1k views

JavaEE6 DAO: Should it be @Stateless or @ApplicationScoped?

I'm currently creating an EJB3 Data Access Class to handle all database operations in my Java EE 6-application. Now, since Java EE 6 provides the new ApplicationScoped-Annotation, I wonder what state ...
3
votes
3answers
2k views

EJB 3.1 in war package in WEB-INF/classes - javax.ejb.CreateException: Could not create stateless EJB

I think, I misunderstood rules of packaging ejb beans in war package. Goal: I want to use ejb beans in war package. Scenario: I have some bean in my war: @Stateless public class ...
2
votes
1answer
66 views

EJB 3.1 remote access

EJBs can be accessed with RMI or as SOAP-RESTful endpoint. I want to access a remote EJB from another computer/ip address for example in a standalone application. I can reach to EJBs with web services ...
2
votes
1answer
58 views

Scala EJB without interface doesn't seem to work

I'm attempting to deploy an EJB written in Scala to an app server. If I create a stateless session bean and give it a (remote) interface, then it works fine (the interface is a trait). The problem ...
2
votes
1answer
39 views

How do I create a non-persistent EJB 3.1 Timer?

Using NetBeans 7.1 / GlassFish 3.1, I created a new TimerSessionBean. @Stateless public class NewTimerSessionBean implements NewTimerSessionBeanLocal { @Schedule(minute = "*", second = "0", ...
2
votes
2answers
45 views

Disabling all schedules in Glassfish 3.1

How can I disable all schedulers (@Schedule annotated) in a project deploing on Glassfish 3.1 Maybe there are some config entries to do this? I have about 20 EJBs with schedulers in my project and if ...
2
votes
1answer
46 views

How to do statistics collection in MDBs state of the art?

I have multiple MDBs (and plenty of mdb instances) as consumers for messages. I have to collect certain statistics inside these Beans and send them every X (currently 30) seconds to a JMS destination. ...
2
votes
3answers
109 views

Passing state between EJB methods / @RequestScoped and @Stateless

I have a @RequestScoped CDI bean that I want to turn into an EJB to get declarative transactions. (I'm on EJB 3.1, Java EE 6) Currently, I am passing state between subroutines, under the assumption ...
2
votes
1answer
181 views

JBoss 6 socket timeout waiting for @Asynchronous method result

I have a stateless EJB-3.1 session bean containing an asynchronous method that does some expensive processing and returns a future to the client, thereby allowing it to display the processing result ...
2
votes
2answers
77 views

@MessageDriven transactions and redelivery semantics

What's the best way to accomplish the following? @MessageDriven bean does some work on database on failure, I want to roll back the DB transaction but I also want the JMS message NOT to be ...

1 2 3 4 5 6