Tagged Questions

3
votes
4answers
1k views

JPA Implementations - Which one is the best to use?

Hi all, I have made use of the following JPA implementations: Hibernate, Toplink, OpenJPA Each of them has their own strengths and weaknesses. I found Hibernate the most advanced of the three …
1
vote
2answers
77 views

JPA and PostgreSQL Network Address Types

Is there a standard way to define a JPA entity that has columns with PostgreSQL network address data types? Im using OpenJPA
0
votes
2answers
38 views

CriteriaBuilder date range

I'm trying to build a date range with CriteriaBuilder, but it's not working. Here's what I have: filter.appendFrom("startDate", startDate, true, false, 0, 0); filter.appendTo("endDate", …
0
votes
1answer
42 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 i have a table …
0
votes
1answer
76 views

SELECT NEW in JPQL

I'm having an issue with a SELECT NEW query. Query q = em.createQuery( "SELECT NEW com.bcbst.odstats.ejb.RangeStats(a.folderName, SUM(a.hits)) " + "FROM ODStat a GROUP BY …
0
votes
2answers
180 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-weblogic-10-3, but …
0
votes
2answers
209 views

Spring Open JPA

Hi, I am trying to integrate Spring and OpenJpa. For every scenario the exception thrown is SAXParseException: No Content allowed in Prolog. I am aware that the issue is probably related to the …
0
votes
2answers
134 views

auto generate timestamp

I have to auto generate timestamp when I am creating a new record and auto generate modified timestamp when I update a record. can anybody tell me how do I implement this. I am using openJPA. thanks …
0
votes
2answers
86 views

How should I use Enums in Openjpa entities?

I'm trying to use an enum field in an openjpa entiy. Everything works fine unitl I try to enhance my entities which breaks with a ClassNotFound exception for the Enum type. I'm using the openjpa maven …
0
votes
1answer
555 views

how do I change persistence.xml at run time

Hello guys, I am new to openJPA. I have a scenario where, depending upon the server where my application is running, I need to change the settings to persistance.xml. For eg. if its running on …
0
votes
1answer
508 views

Logging JPA SQL with Weblogic 10.3

By looking into the Open JPA website i've found that i can log the generated SQL by using the following: <property name="openjpa.Log" value="DefaultLevel=WARN, Runtime=INFO, Tool=INFO"/> If i …
0
votes
1answer
110 views

What should be considered using subselects in queries with haevy loaded databases?

We are developing an application with a persistence layer using OpenJPA1.1 and an Oracle DB as backend storage. I will use queries with subselects (see my question at Solving JPA query finding the …
0
votes
2answers
512 views

java.lang.UnsupportedOperationException in JPA transaction

I'm pretty sure that I'm not understanding something about JPA (I'm using OpenJPA) and it's causing this problem. I want to make a copy of a Job entity. @Entity @Table(name="Job") public class Job …
-5
votes
8answers
267 views

Impossible null pointer

Hey, I have a real weird problem. I have 2 classes: (very important note: this is an example cause I can't paste the original code, I wrote it as text with no compiler) class B { private int num …