Tagged Questions
0
votes
0answers
40 views
JSF view displaying outdated value
I have two entities and a backing bean in my application. Following, a simplified version of it:
Controller and Models:
class BackingBean {
private List<A> collectionOfA;
private A ...
0
votes
2answers
235 views
EntityManager obtained from JNDI lookup is already closed
On our PRE-PROD environment (Glassfish v2.1), we're encountering two RuntimeExceptions from two separate requests to our session bean:
"org.hibernate.SessionException: Session is closed!"
...
1
vote
0answers
113 views
how to use JPA in a worker thread?
I'm using WebLogic 10.3.5.0 with JPA 2.0 and have the following scenario:
user needs to start a task takes some time to complete;
this task needs to read and write to DB;
One solution would be to ...
0
votes
1answer
187 views
Stateful bean injecting stateless bean, will they both use the same instance of EntityManagerFactory?
I have a Stateful Bean injecting a JPA PersistenceUnit and another stateless bean. The stateless bean is injecting the same PersistenceUnit as well. My question is, will the EJB container inject the ...
1
vote
1answer
645 views
JPA Entiy on synonym instead of table
I have a Seam 2.2 based JEE 5 web application with a bunch of tables mapped to JPA 1.0 Entities via Hibernate 3.3.3. During development it's running on a Tomcat 6, Oracle 10 XE and Windows 7.
Now, we ...
1
vote
1answer
116 views
How can I receive the persistence unit name of an EntityManager?
In a Java EE application I am using @PersistenceContext on an EJB3.0 SessionBean to let an EntityManager be autowired.
As I am using multiple Datasources, I want to programmatically determine the ...
0
votes
0answers
1k views
JSF Datamodel & JPA parent to leaves navigation. How to?
My web application is a CRUD web application based on JSF 2.0 / JPA using JEE 5 and JDK 1.6. Running on Glassfish 3.1. The IDE is Netbeans 7.0. (I do not use EJB, nor CDI).
THE PROBLEM
What I can ...
1
vote
2answers
1k views
Generating entities with Hibernate, Tomcat 6, JEE5
I'm trying to generate a database created from entities. I'm using Hibernate, PostgreSQL, Tomcat6 and Eclipse for development.
Here's what one of the entities look like:
package pass.entities;
...
0
votes
1answer
493 views
ejb3-using-2-persistence-units-within-a-transaction
I am having problems connecting to 2 persistence units from within the same transaction using following tech stack,
WLS 10.3.x, Eclipselink 2.1, Oracle 11g JDBC driver, Informix 10 JDBC driver
Using ...
2
votes
1answer
480 views
Interface between two related JPA entities
The scenario is as below (tables shown)
Delivery table
------
id channelId type
10 100 fax
20 200 email
Fax table
----
id number
100 1234567
101 1234598
Email table
-----
...
0
votes
5answers
931 views
Which are the differences/similarities between hibernate and other frameworks or specifications?
I want to know the differences/similarities between Hibernate and simple persistence in Java EE 5?
I'm not clear if Hibernate implements Java EE 5 persistence implementation or if it is a totally ...
0
votes
2answers
1k views
How to implement pessimistic locking in JPA with Glassfish 2.1?
When trying to setup a lock (pessimistic), with the following code:
em.lock(controlnumbers, LockModeType.WRITE);
em.refresh(controlnumbers);
I am getting the following exception:
...
0
votes
1answer
350 views
EJB3 - handling non-standard link tables
I have a situation where I am working with EJB3 and a legacy database. I have a situation where there is a many-to-many relationship between two tables A and B, defined through a third (link) table L.
...
1
vote
1answer
6k views
EJB3 and manual hierarchy persistence
I have a legacy database, which I am using EJB3 to model. The database is in quite a poor shape, and we have certain unusual restrictions on how we insert into the DB. Now I want to model the database ...
1
vote
2answers
1k views
JPA annotations and Interfaces [closed]
I have a class Animal and an interface it inherits from IAnimal.
@MappedSuperclass
public class Animal implements Serializable, IAnimal{...}.
@Entity
public class Jaguar extends Animal{...}
My ...
-1
votes
3answers
199 views
Another JPA Question
I have this code:
@PersistenceContext(name="persistence/monkey", unitName="deltaflow-pu")
...
@Stateless
public class GahBean implements GahRemote {
But when I use this:
try{
InitialContext ic = ...