Tagged Questions
0
votes
0answers
29 views
Why must EJB Timer share a database connection in a cluster?
I have a singleton EJB bean with a timed method that saves statistics to the database once every minute. The bean holds statistics individually on each cluster node, so it is important that it saves ...
0
votes
1answer
40 views
How can a singleton Java EE bean obtain a reference to itself?
I have a singleton bean for which the @PostConstruct method needs to call an @Asynchronous method within itself. It cannot do so directly using this because that makes the call synchronous. I cannot ...
0
votes
2answers
48 views
Java EE DAO without EJB
Is it possible to create a DAO in Java EE environment, which uses JPA, but does not need to be a Stateless bean? I am asking because I have a huge number of EJBs, just because I need a few @Resources ...
0
votes
1answer
26 views
Synchronized block in stateless EJB
Is it okay to have a synchronized block in a stateless EJB in EJB 3.1?
The synchronized block is for renewing a connection on connection errors.
0
votes
1answer
32 views
EJB - Pass Contextual Data from JSF to EJB
A have a new feature that forces me to pass some new data structure to my EJBs.
This is a user session context that has some information about the current user.
How can I pass this data to my EJBs ...
1
vote
0answers
38 views
MonoDb creates connection every single operation on collection
I'm using mongodb-java-driver, and nothing else except that. I created singleten EJB with connection to Mongo.
@Singleton
public class MongoConnection {
private DB db = null;
private MongoClient ...
0
votes
1answer
29 views
Interface-less view at EJB 3.1
Basically I have 2 questions.
What EJB 3.1 spec says about interface-less EJB bean? Why it was introduced so late?
What is typical and/or reference implementation? AFAIK, it is impossible to ...
0
votes
1answer
144 views
My first project EJB 3.0 / JSF 2.0 with Eclipse. How to test it?
I'm trying to create my first project EJB3 with JSF 2.0 & Eclipse.
My first project is roughly a Hello World Project. I have an EJB interface, a bean that implements the methods and JSF ...
0
votes
1answer
128 views
Migrating from jboss 5 to 7
I've been tasked with trying to migrate some existing apps from jboss5 to jboss7.
I don't know much about EJBs or Hibernate so this is an interesting challenge for me.
Currently this is where i'm ...
2
votes
0answers
29 views
Is there a way to configure MDBs programatically?
I am currently working on a EJB 3.1 based project running on GlassFish that uses a custom built framework to configure the functionality of any SessionBeans. Using this we can enable, disable and ...
0
votes
1answer
62 views
JPA : Differences between modified detached entity and original one
Building a web application using EJB & JPA in JSF I'd like to know how I can get modified fields of an entity.
Let's take an easy example :
@Entity
@Table
public class User implements ...
1
vote
1answer
72 views
Suggestion on beginning Enterpise Java Beans
As I face a couple problems on my beginning in EJB technology leading frequently to awkward and time consuming situations, I am considering ordering a book focused exclusively (or predominantly) on ...
0
votes
1answer
79 views
singleton ejb with PersistenceContext and LockType.READ
@Singleton EJBs like this:
@Singleton
public class MySingleton {
@PersistenceContext
private EntityManager em;
...
@Lock(LockType.READ)
public void doPersistanceAction() ...
1
vote
1answer
52 views
What is the best pattern for creating an entity if it doesn't exist in JPA
This is related to this question, but very specifically speaks to the problems Pascal points to in his answer.
I need to persist an entity if it does not exist (it's primary key is not in the ...
0
votes
1answer
102 views
Good way of managing database entity manager
Following recommendations given to me in this thread
I am making my DAO accessors @Singleton, @Startup, @LocalBean
My question is on the good way to implement the entityManager that is supposed to ...
0
votes
0answers
31 views
How to make an i18n-query with fallback language using the CriteriaBuilder?
I have 3 MySQL tables:
LANGUAGE
-id
-name
INDUSTRY
-id
INDUSTRY_DETAIL
-id
-industry_id
-language_id
-name
They contain the following data:
LANGUAGE
...
0
votes
1answer
40 views
What technology is the HTTP and UI level of application based on EJB architecture?
I read a lot about possible Java Web Development architectures (servlets+JSP, Spring MVC, Struts etc.). One of them is "plain Java EE 6" with EJB 3, in opposition to Spring/Spring MVC.
I started to ...
1
vote
2answers
44 views
Want to declare block of code that uses a few EJBs to be transactional
I have a function that makes use of a couple of EJB facades that create some information in the database. This block of data creation calls should be atomic, if one fails, nothing should be committed. ...
0
votes
0answers
169 views
EJB: Method invocation and interfaces
I'm currently upgrade our business javaee environment. A new feature should be implemented which allows to manage maintenance notifications in the webframework that affect other web applications on ...
1
vote
1answer
70 views
Want to use the same EJB in two servlets but the they seem to be using different EJBs even though the EJB is marked as @Stateful?
I have a stateful EJB acting as a shopping cart. I have two servlets, one of them is used for adding products to the shopping cart. The other is used to retrieve the shopping cart information, ie. the ...
2
votes
2answers
538 views
Difference between @Stateless and @Singleton
I'm following this tutorial which also uses an EJB:
package exercise1;
import java.util.Random;
import javax.ejb.Stateless;
import javax.inject.Named;
@Stateless
public class MessageServerBean {
...
0
votes
0answers
71 views
EJB depending on another EJB?
I'm using Jboss 7 and have two separate deployments that both contain singleton EJBs.
I need the one EJB to have access to the other EJB and be able to call its methods, however, when the app server ...
1
vote
1answer
62 views
Locating a LocalBean by its class
I'm working on a project with JAX-WS.
I need to do like this. (I'm even not sure it's possible or not)
Lets say there are three EJB like this.
public abstract class AbstractEjb<T extends A>
...
2
votes
2answers
347 views
EJB creating using SessionBean EJBObject and EJBHome interfaces
Can any buddy clear me i am confused about creating EJB
i have seen in many places in the internet samples of EJB beans and also sample project that an EJB is developed using SessionBean , EJBObject ...
0
votes
1answer
324 views
How to Sync Entity Bean with Database After Trigger Update
PostgreSQL 9.1
Glassfish 3.1.2.2
Firefox 10.0.0.7
Linux
I am using JPA to persist entities in PostgreSQL. However, there is one table (named Position) which is populated by triggers and I use an ...
0
votes
2answers
234 views
Error when using Asynchronous annotation in EJB
On invoking an @Asynchronous method in EJB, I see an error getting logged though the method execution works fine. Any suggestion on what is going wrong?
EJB 3.1 on WebSphere V8
The interface is :
...
1
vote
2answers
740 views
Automatic EJB Timer on Glassfish Server not triggering
So I'm running a Java EAR application on a Glassfish 3.1. I created a stateless session bean with a single annotated timer function in my EJB Module. I don't have the exact code but it looks ...
1
vote
3answers
488 views
Simple authentication in EJB 3.1
I have an EJB 3.1 application and java clients connecting with this application.
I need to create a user authentication.
Example:
class LoginBean{
public remoteLogin(String login, String password){
...
6
votes
2answers
712 views
What is an EJB, and what does it do?
Been trying to learn what EJB beans are, what does it mean their instances are managed in a pool, blah blah. Really can't get a good grip of them.
Can you explain me what they really are (practically ...
0
votes
1answer
327 views
How to properly use @Alternative for client implementations
EDIT: I changed the CDI injections points from using @EJB to using @Inject as indicated in my below comments. Just an FYI.
I have two EAR projects, both basically the same. The only difference ...
0
votes
1answer
158 views
How to delete records with condition in ejbql?
I have the following data in my database table
1 myname@email.com 2323
2 myname@email.com 3432
3 myname2@gmail.com 4433
I want to remove all records in table where email == myname@email.com
...
0
votes
1answer
259 views
Advantage of EJB transactions over spring transactions [closed]
What exactly are the real benefits of EJB transaction management over Spring transaction management
0
votes
0answers
21 views
only DI on one clustered singelton bean
I have two servers running in a cluster. I have a bean that is is a deployed to both servers but it runs as a clustered singleton. It has dependency injection in it that is always loaded on both ...
6
votes
2answers
1k views
Hold session in stateful EJB 3.1 bean?
I'm working on a Java webapp trying to combine the following technologies:
Java EE 6
CDI
JSF 2
EJB 3.1
Spring Security
I provide CDI-based backing beans (@ViewScoped, @Named) for my JSF pages.
I ...
1
vote
1answer
231 views
JBoss 6.1 not limiting the number of threads it launches with @Asynchronous
Our application is launching a series of threads via the @Asynchronous annotation on EJBs. However, JBoss (contrairy to this) is not limiting the number of threads launched. Debugging shows that it is ...
1
vote
1answer
333 views
Can not use EJB's in a Restful Webservice
I have a pretty simple class that is a Restful web service. I want to use a EJB in the web service. I used the @EJB annotation to inject my EJB. The only problem was, the EJB was always null. I then ...
0
votes
1answer
575 views
Consuming MQ Messages: JMS Listener vs Message Driven Bean
Our IBM MQ Series queue Q1 will be receiving XML messages that we need to consume, invoke XSLT and place the resulting XML on another queue Q2. The size of the messages is small (up to 5KB). We can ...
0
votes
1answer
92 views
Flush automatically call persist
I just have a small query on whether flush involves automatically persisting all previous entity relationships. Here is what I mean:
shFood.setCuisines(cuisineSelection);
entityManager.flush();
...
1
vote
1answer
257 views
Cannot merge an entity that has been removed
I encountered something really puzzling in my development work.
removePreviousFoodMenuItems(oldRefList);
shFood.setNewFoodMenuItems(newRefList);
em.merge(shFood);
em.flush(); //Error occurs
If I ...
1
vote
1answer
101 views
Keep Future objects around between requests?
I want to use the JBoss 5.1 asynch feature as described in https://docs.jboss.org/ejb3/docs/reference/build/reference/en/html/jboss_extensions.html - however, I'm a bit unclear on how to keep the ...
0
votes
0answers
347 views
EJB3.1: entity facade in servlet is null (NetBeans NewsApp tutorial sample)
New to EJB3.1, I'm following the tutorial sample on http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html and after completion, I run the project but get a NullPointerException; same happens when ...
2
votes
1answer
149 views
How can I insert Null value in the entity (EJB3)?
I'm working on EJB3. I want to insert Null value in the table.
Eg. I'm having a table called "Students" which has columns fields such as
String name;
String class;
Set<Subjects> subjects;
...
2
votes
1answer
87 views
Which type of beans are injectible?
With the concept of CDI in EJB3.X, you can inject the beans or entities.
What i want to know is: which types of beans you can inject.
Session Bean in Entity? Entity in MDB, etc???
How can I find a ...
0
votes
2answers
380 views
Can I define a non final static field in ejb 3.1 singleton
According to EJB specs, non final static fields are not allowed. Is this still the case for an EJB 3.1 stateless session bean defined as singleton?
Just to make things clearer and to prevent question ...
2
votes
1answer
266 views
@Stateless bean with @EJB guaranteed to be a unique ejb instance?
I was wondering... Let's say that I have two stateless beans in ejb 3.1:
@Stateless
Class1
@EJB MyUniqueInstanceBean uniqueBean1;
2.
@Stateless
Class2
@EJB MyUniqueInstanceBean uniqueBean2;
...
0
votes
2answers
1k views
JBOSS: EJB how to fix java.lang.reflect.UndeclaredThrowableException?
inside a bean i try to list all the articles with this method
public List<Article> listerLesArticles() {
javax.persistence.Query req = manager.createQuery("select * from Article");
...
2
votes
2answers
519 views
EJB 2.1 Vs EJB 3.1
Just wanted to know can i directly run the code which EJB code (adhering to 2.1 specs) in a EJB 3.1 container of an application server?In an application server, are there different versions of the ...
3
votes
3answers
776 views
Are there any EJB migration tools available for migrating EJB 2.1 toEJB 3.x
May be the best way is doing it manually. But in a large project you need some tool to assist you. It was the idea that led me to search a tool.
Are there any EJB migration tools available for ...
1
vote
0answers
55 views
What happens to my test classes after EJB 3.1 Migration
I am planning to migrate an EJB2.1 Project into EJB 3.1. I have lots of Unit tests. What happens to my classes if i migrate my project?
Can I use the existing unit tests?
If not, does it take much ...
0
votes
2answers
738 views
Multiple instances of EJB 3.1 no-interface Singleton / Stateful session bean
I want to access multiple instances singletonA and singletonB of a no-interface Singleton MySingleton. The instances are first defined in another Singleton Configurator class:
MySingleton.java
...