1
vote
2answers
35 views
Supporting Different JPA GenerationTypes for Test/Production
I want to use GenerationType.IDENTITY for primary keys in my production MySQL system. But for local development and testing, I'd like to use HSQLDB. The problem is that HSQLDB does …
0
votes
2answers
19 views
netbeans 6.5.1 reverse engine Oracle entity
i reverse engined entity class but the primary key is not anottaed with GeneratedValue . my table is created on oracle. do i need to add contraint on the table primary key for a …
0
votes
1answer
22 views
How to use @GeneratedValue in a non pk field
Hello,
I would like to know how we could use a sequence in JPA. We have a non-pk field which value must come from a sequence in DB. How could I update that value updating the enti …
1
vote
1answer
29 views
2 JPA entities on the same table.
Let's say I've a table with 200 columns and most of them are never used.
I map SmallEntity to the 10 columns that are used often. I use it in the associations with other entities. …
0
votes
1answer
58 views
JPA Entity (in multiple persistence-unit) in OSGi (Spring DM) Environnement is confusing me.
Hi,
I'm a bit confused about a strange behavior of my JPA's related objects.
I have three bundle :
The User bundle does contain some user-related objects, but mainly the User o …
0
votes
0answers
17 views
Persistence.createEntityManagerFactory() in J2EE ignores jta source
I have a perfectly working application client deployed to a glassfish v2 server inside an ear with some EJBs, Entities, etc. I'm using eclipselink.
Currently I have in my persiste …
1
vote
1answer
32 views
How can I configure a JPA EntityListener via a Spring XML configuration file?
Hello,
I have two webapps, that are built together and respectively provide a client and admin access to a database.
I'd like to register two JPA EntityListeners to a given class …
0
votes
1answer
23 views
Persistence Using JPA Persistence.xml for Desktop App
I'm actually finishing a Desktop App That implements JPA for DB Communication. I Have a JPA Util class that does the following:
private EntityManagerFactory emf = new EntityManage …
0
votes
1answer
34 views
How to get the database time with JPQL?
Hi,
with native SQL I get the database time with a statement like:
SELECT CURRENT_TIMESTAMP
with JPQL I get the same result with:
SELECT CURRENT_TIMESTAMP
FROM Customer c
WHERE …
2
votes
1answer
40 views
Does HibernateTemplate work with Envers? If so, how?
I am trying to use Envers on a project that also uses Hibernate and Spring - and I appreciate a lot the code reduction offered by HibernateTemplate.
I configured Envers under JPA, …
0
votes
0answers
11 views
multiple discriminator columns for persistent subclasses
Hello all, I have banged my self with a very particular problem. Using OpenJPA (KODO 4.1) is there a way to use more than one column as a discriminator column?
My problem is that …
1
vote
2answers
46 views
Hibernate on Oracle: mapping String property to CLOB column
WARNING: see my own answer below. The problem is caused by old Oracle drivers that were present on the classpath in addition to 10.2.0.4. Problem solved. Leaving the rest of this q …
0
votes
2answers
48 views
JPA Logging in WebLogic 11g (10.3.1)
How do you enable debug logging for OpenJPA when running an application in WebLogic 11g? I tried the steps given by http://stackoverflow.com/questions/792741/logging-jpa-sql-with- …
0
votes
2answers
41 views
Example of using CURRENT_DATE in JPA query
Can anyone point me to an example on how to use CURRENT_DATE in a JPA query?
CURRENT_DATE is specified in JPA but I haven't been able to make it work. I always get the unexpected …
0
votes
1answer
115 views
How can I configure a Servlet in Eclipse to use a JPA project?
I am using Eclipse Galileo and I wanted to deploy a simple application, using JPA, GlassFish 2.1 and MySQL 5. Unfortunately, I could not find any tutorials for GlassFish 2.1 (just …
