The Java Persistence Architecture API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a relational database. JPA was defined as part of the EJB 3.0 specification as a replacement for the EJB 2 CMP Entity Beans specification. JPA is now ...

learn more… | top users | synonyms

4
votes
0answers
85 views

Java EE: Eclipselink transaction missing

I have a maven based Java EE project that should run on GlassFish v3. There is a JSF ManagedBean that injects an EJB service. ManagedBean calls one of the injected EJB's method on button click where ...
3
votes
0answers
23 views

JPA CAscadeType priority?

Using JPA i have a question relating to the CascadeTypes. for Example: @ManyToMany(fetch=FetchType.LAZY, cascade={CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REFRESH}) is different to ...
3
votes
0answers
41 views

JPQL Hibernate NULLS LAST being ignored

UPDATED - see answer in comment I'm aware that CriteriaQuery.orderBy does not support NULLS LAST. I was trying to use a TypedQuery and noticed that it seems to just ignore everything after "NULLS ...
3
votes
0answers
84 views

Generate JPA2 Entities from Existing Database using Maven

Generate JPA 2 Entities from existing Database I want to do same but using maven build. Please suggest the plugin. As i googled it, i found the metamodel generation of JPA using JPA annotation ...
3
votes
0answers
156 views

NullPointerException at org.hibernate.ejb.criteria.path.AbstractPathImpl.get

This works fine: public Predicate toPredicate(Root<Campaign> root, CriteriaQuery<?> query, CriteriaBuilder cb) { return root.get("campState").get("statusId").in(campStatus); } ...
3
votes
0answers
568 views

GAE: Access denied exception causing error on persistence provider

I just upgraded to GAE SDK 1.7.1 and now I'm trying to use JPA 2 in my [former] functioning project. When I try to use the Entity Manager it throws the following exception: ...
3
votes
0answers
3k views

Why could <exclude-unlisted-classes>false</exclude-unlisted-classes> fail to work?

With this persistence.xml: <?xml version="1.0" encoding="UTF-8" ?> <persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
3
votes
0answers
1k views

Jboss - Strange exception after auto-reconnecting to XA datasource

I'm using a XA datasource on Jboss 6, using <check-valid-connection-sql> and <background-validation-millis> to auto-reconnect when one of the connections is dead. This works, but the ...
3
votes
0answers
2k views

JPA Hibernate left join fetch generating mutiple queries

I have a jpql query to eagerly fetch multi level associations as follows select distinct s from Singer s left join fetch s.singerIdentifiers si //singerIdentifiers is collection in Singer object ...
2
votes
0answers
42 views

How can I use SLF4J for my Java EE web application deployed on GlassFish 3 with Hibernate JPA?

Is it possible to use SLF4J in a specific GlassFish application and configure SLF4J solely for that application? We are currently struggling with the fact that GlassFish itself GlassFish with ...
2
votes
0answers
31 views

Unexpected ArrayIndexOutOfBoundsException in Hibernate UUIDTypeDescriptor$ToBytesTransformer.parse() method

I'm using Java 6 and hibernate-core-4.0.0.final.jar with hibernate-commons-annotations-4.0.1.Final.jar and hibernate-jpa-2.0-api-1.0.1.Final.jar I have an entity with a java.util.UUID column as PK. ...
2
votes
0answers
97 views

JPA Join using arbitrary field (not primary key)

I've got two entities that I want to join together using a field they have in common, called shared_id. The field is not the primary key of either entity. The shared_id is unique - each Hipster will ...
2
votes
0answers
67 views

Problems with calculated properties and inheritiance using @Formula in hibernate

Hi I'm pretty new to Hibernate so I might be doing some silly stuff. I have an entity @Entity @Table(name="criterion") @Inheritance(strategy = InheritanceType.JOINED) public abstract class ...
2
votes
0answers
326 views

JPA merge() updates only some fields. Other changes are not recognized

This is my first post. So, I hope the question is exciting. I have a java program that uses Swing+JPA to work with a PostgreSQL database. I use EclipseLink JPA 2.0 as my Persistence Provider. My ...
2
votes
0answers
165 views

How to Clear EclipseLink Query Results Cache from a CDI Interceptor?

I'm using EclipseLink's Query Results Cache: @NamedQuery(name = "User.findAll", query = "SELECT s FROM ...", hints= { @QueryHint(name=QueryHints.QUERY_RESULTS_CACHE, ...
2
votes
0answers
68 views

How to turn off EBean enhancement

I have been using Ebean with enhancement for a while. It works most of the time but it's very brittle and really cumbersome to get the configuration right. I hope turning it off could improve the ...
2
votes
0answers
93 views

Million User Fanout in Google App Engine using JPA

I'm trying to figure out the million fanout problem for GAE using JPA. If I understand things correctly I should have the following entities for something like Twitter (just an example): public User ...
2
votes
0answers
116 views

inconsistent behavior of entityManager persistence with field type bigDecimal

I use the entity manager to save data for several types like int byte string double etc and this works fine I added field to the entity class type bigDecimal and I can i see while debug the code that ...
2
votes
0answers
145 views

EntityManager throws OptimisticLockException when try to delete locked entity in same transaction

Here is my code: EntityManager em = JPAUtil.createEntityManager(); try { EntityTransaction tx = em.getTransaction(); try { //do some stuff here tx.begin(); ...
2
votes
0answers
106 views

Multi column distinct count in JPQL

Is there any workaround to do a multi column distinct count in JPQL? It appears that JPQL supports only single expression counts in queries and since subqueries can't be used in from part is is not ...
2
votes
0answers
1k views

object references an unsaved transient instance - save the transient instance before flushing (CascadeType.ALL not working)

This issue has been discussed here many times, but the decision did not come for my case. I have the essence of the column, which can have a parent (field parent) public class Column { @Id ...
2
votes
0answers
131 views

Providing entities to the client using JAX-WS

I am trying to create a web service using JAX-WS (SOAP) allowing CRUD operations on some entities. I am also writing a desktop client with an UI which provides easy means of doing CRUD on those ...
2
votes
0answers
237 views

thread-safety of injected EntityManager in JSF environment

Are there any thread-safety issues or other code smells with the following pattern? Stateless EJB3 bean injected with container-managed EntityManager: @Stateless public class ServiceA implements ...
2
votes
0answers
120 views

Integral restful JPA over Hibernate

It seems that Eclispelink, OpenJPA and DataNucleus already provide integral restful JPA out of box. How about Hibernate? I'm not looking for any scalfold framework that generates restful web ...
2
votes
0answers
116 views

How do I auto-generate a GUID for a join table?

I'm using Hibernate 4.1.0.Final, JPA 2.0, and MySQL 5.5. I have the following entity: @GenericGenerator(name = "uuid-strategy", strategy = "uuid.hex") @Entity @Table(name = "cb_organization", ...
2
votes
0answers
490 views

Hibernate OneToOne(optional=true) with FetchMode.JOIN try to re-select null values

My problem is that hibernate eager loading of OneToOne association execute +1 select for each null relation. Entity example: @Entity class SideBlue { @Column(nullable = false) private ...
2
votes
0answers
196 views

Hibernate: exception when using embeddable in HQL query

I've got a shopping application with customers. Those customers have a cart containing products. Here's the (simplified) mapping with embeddables I used: @Entity class Customer { @Embedded ...
2
votes
0answers
91 views

How can I get hibernate to persist a one-to-many sub-subclass of a MappedSuperclass without altering the parent classes?

I have an abstract @MappedSuperclass, Vehicle, and a concrete implementation Car. @MappedSuperclass public abstract class Vehicle { ... } @Entity @Table(schema = "Dealer", name = "Cars") public ...
2
votes
0answers
282 views

JPA static metamodel with @MappedSuperclass (with a bit of Generation Gap Pattern)

I tried to achieve Generation Gap Pattern with JPA entities. Here is the solution we choose ( <-- are inheritance) BaseEntity <-- EntityGenerated <-- Entity The EntityGenerated type is ...
2
votes
0answers
167 views

Use EntityManager with JAX-RS and Jackson in a custom deserializer

I have data for a customer formated in JSON : { "name":"My Name", "company":{ "id":9 } } My entity looks like : @Entity public class Customer { @Id Integer id; ...
2
votes
0answers
184 views

JPA Map<enum,entity> using Hibernate and MySQL, enum key shows as null in database column

I'm using a Map with enum key, and entity value. However, when created in MySQL dbs, the enum key column is always null. Could anyone help to explain? public enum Type{ A,B,C } @Entity public ...
2
votes
0answers
191 views

JMS JPA concurrency issue on Websphere App Server 7, EJB 3.0, OpenJPA EntityExistsException

Use case is a Device sending JMS messages with GPS info processed by a MDB. If a Device doesn't exist in the database then it is created/inserted and the GPS record created/inserted. Everything works ...
2
votes
0answers
451 views

glassfish invalid resource

I am creating a simple JPA project in eclipse to run on glassfish. I get the following error: cannot Deploy GuardApplicationEAR Deployment Error for module: GuardApplicationEAR: Error occurred during ...
2
votes
0answers
328 views

Exception while trying to use @PersistenceContext with unitName

I am using Spring 3.1, JPA 2 with Hibernate, JBoss. I want to use multiple persistence units. Here is my persistence.xml <persistence version="2.0" ...
2
votes
0answers
298 views

Migrate Spring JPA DAO unit testing to google app engine

I'm trying to put together a simple environment where I can get Spring, Maven, JPA, Google App Engine and DAO unit testing working happily all together. The goal is to be able to run a simple DAO ...
2
votes
0answers
136 views

Sub-queries in associations with hibernate

Anyone knows if is possible to use sub-queries in associations like this query bellow? SELECT l, o FROM User u INNER JOIN u.licenses l LEFT JOIN l.orders o WITH o.id = ( ...
2
votes
0answers
362 views

JPA EntityExistsException Duplicate entry when doing merge?

Using JPA (OpenJPA) in a J2SE application I'm trying to update a table with the content of a List of Entries : adding new entries or replacing existing entries with what is in the List if they exist. ...
2
votes
0answers
435 views

Testing JPA/Hibernate entities using DBUnit

I've got some problems with some entities specifically with the use of JPA/Hibernate and DBUNIT. I came across this error when i tried to build the project. Tests run: 2, Failures: 0, Errors: 2, ...
2
votes
0answers
161 views

HibernateJpaDialect PersistenceException translation for StaleStateExceptions

I didn't understand the implementation of org.springframework.orm.jpa.vendor.HibernateJpaDialect for translateExceptionIfPossible() method of the PersistenceExceptionTranslator interface. It converts ...
2
votes
0answers
441 views

JPA: flexibly mapping “attributes” (key/value data of various data types) to an entity

I'm having some issues deciding how to map key/value data to an entity in a sensible and performant way. I might even be taking a wrong approach here, so I'm thankful for any hints. Basically, this ...
2
votes
0answers
357 views

Hibernate @OneToMany(mappedBy=“…”) relation not being cached

I have a following class called Article (simplified): @Entity @DiscriminatorValue("Article") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) class Article { // ..... ...
2
votes
0answers
553 views

JPA 2.0 multiple OR in where clause

couldn't find an answer for this one. We have a criteria query that should output sql something along these lines: select * from x where x.one is null and ( (x.two = 2 and x.three = 3) or (x.two ...
2
votes
0answers
167 views

Is DataNucleus working in JBoss Java EE app server for JPA access to LDAP DB?

I would like to access an LDAP database (and maybe NoSQL db in the future) using JBoss Java EE app server. I would like to keep standard JPA annotations and not using direct LDAP APIs in my EJBs if ...
2
votes
0answers
580 views

LazyInitializationException in RESTORE_VIEW (improper PersistentSet instantiation)

I'm getting started to use IceFaces and had encountered a problem when trying drag'n'drop support. IceFaces 2.0.0 JSF 2.0 Mojarra 2.0.2 (FCS b10) (JSF reference implementation) Spring 3.0.3 Hibernate ...
2
votes
0answers
219 views

Wrong number of children items returned in join fetch on JPA

I have a JPA OneToMany association @OneToMany(mappedBy = "playlist", fetch = FetchType.LAZY, cascade = CascadeType.ALL) @IndexColumn(name = "intSequence") private List<Track> tracks; in ...
1
vote
0answers
17 views

Java JPA/JTA configuration

I'm trying to find out why my web application throws a javax.naming.NameNotFoundException: Name [flexeraDS] is not bound in this Context. Unable to find [flexeraDS]. when a sister one from which ...
1
vote
0answers
30 views

Read image stored as blob, directly into byte[] using springdata

I have an image stored in an Oracle database and I'm using spring data to retrieve the image. @Query("SELECT c.binaryContent from ContentEntity c join c.ParentContentEntities pce where ...
1
vote
0answers
29 views

Composite Unique Index created on each deploy

I'm using Spring 3.2 with Hibernate 4.2.1.Final and MySql 5.5. Each time I reload my webapp hibernate creates a new Composite Unique Index of my entities. For example in my entity I have: ...
1
vote
0answers
34 views
+50

GlassFish Server deployment and MySQLNonTransientConnectionException

When I deploy my application, after a while I get this exception: javax.servlet.ServletException: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): ...
1
vote
0answers
50 views

JPA(2.0) Criteria Simple Join

I am having problem creating criteriaQuery for the following sql. Any help would be appreciated.Lets say I have two tables Member and Person. I am joining on name and age and having where clause for ...

1 2 3 4 5 52