Tagged Questions
The entity-bean tag has no wiki summary.
0
votes
1answer
31 views
EntityManager identifier generation exception?
I ran into this problem when I try to create a record in DB through entitybean and entitymanager. I have two methods in the UserManagerImpl.java, the odd thing is the findalluser method works well and ...
0
votes
1answer
48 views
CMP entity bean in OpenEJB (OpenJPA?)
I try to run an old EJB2 system on OpenEJB and it uses Entity Bean to access database. Current status is I can run it and can send SQL to Oracle DB (I can see the session and SQL in Oracle), but the ...
0
votes
1answer
132 views
Websphere 7 - BMP Entity Bean - ejbStore called at end of transaction and not after setter method
We are migrating from Weblogic to Websphere 7. It is a legacy application and contains EJB 2.0 beans. The Entity beans have BMP. The session facade beans make updates to the entity beans but the ...
0
votes
1answer
227 views
how to connect data base with EJB entity bean
how to configure EJB with mysql. where will put username,password , driver class etc...
i want access one table using EJB entity bean , it is installed in my local computer. how it is possble..
...
0
votes
1answer
109 views
when is an EJB CMP entity bean actually created
I have a session bean that provides a business method, in which it creates several CMP entity beans, something like this
public void businessMethod(int number) {
try {
MyBeanHome home = ...
0
votes
2answers
252 views
Java EJB entity beans performance
How performant is the entity bean? Would it be too much to ask if I want 1000 objects per table (probably about 20 tables) across 5 processes where some processes might be changing the objects as ...
0
votes
2answers
1k views
How to create project in WebLogic Workshop with support for JPA entity beans?
How to create a project in WebLogic Workshop (version 10.3) with support for JPA entity beans?
I am trying create a separate EJB and EJBClient projects in Workshop and EJB3 session beans work just ...