The Java Persistence Architecture API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects/classes and a relational database. It is part of the EJB 3.0 specification and is the industry standard approach for Object to Relational Mapping (ORM).

learn more… | top users | synonyms

0
votes
2answers
63 views

Caching large data sets with hibernate/jpa/memcache?

I'm new to open source stacks and have been playing with hibernate/jpa/jdbc and memcache. I have a large data set per jdbc query and possibly will have a number these large data sets where I ...
0
votes
1answer
42 views

JPA Query annotation and joining table

I have a sql query like this Select * from DB1.Table1 a left join DB2.Table2 b on a.dCode = b.dCode where bID = 123; How can I create jpa code for the above query? what would be the params of ...
0
votes
1answer
40 views

Error when retrieving child properties in hibernate

Im getting this error, im trying to access a child property using one-to-many relation in hibernate: org.hibernate.QueryException: illegal attempt to dereference collection ...
1
vote
1answer
31 views

Column order on OpenJPA

Is there a way to get the columns in the order they are declared in the Java class, or to specify the order in some other way? I'm using the mapping tool ant task to generate the DDL for my classes ...
0
votes
1answer
41 views

No Persistence provider for EntityManager on my GWT project

) my GWT project return a 503 error: service unavaible and I DON'T KNOW WHY!! I follow this guide for my first GWT project with hibernate, spring, ...
1
vote
1answer
41 views

(JPA) Cannot retrieve objects using .getResultList() of Query class from EntityManager

I have these two entities Customer and Rental Customer @Entity public class Customer implements Serializable { @Id @Column(name = "customer_id") private int customerId; ...
0
votes
0answers
31 views

How to solve this exeption “can't find a persistence unit named ”

i am trying to use hibernate to persist my data and deploy this application on a JBoss AS 7.1.0 server . This is my persistence.xml file <?xml version="1.0" encoding="UTF-8"?> <persistence ...
2
votes
1answer
36 views

Is it possible to avoid typecast on custom @Query?

Imagine that we have an entity: @Entity public class Person implements Serializable { @Id private String name; private Long age; private Boolean isMad; ... } And a repository with ...
0
votes
1answer
36 views

(JPA) object references an unsaved transient instance

I met this error while I'm trying to implement one to many relationships in JPA. Caused by: org.hibernate.TransientObjectException: object references an unsaved transient instance - save the ...
0
votes
0answers
19 views

jpa how to get all collection from parents

hello i have got entity: public class ResourceType { @Id @GeneratedValue(generator = "ResourceSeq", strategy = GenerationType.SEQUENCE) @SequenceGenerator(name = "ResourceSeq", sequenceName ...
0
votes
2answers
56 views

Spring injection of entitymanager with Glassfish and EclipseLink not working

I'm working on a web application using Java EE, Spring, EclipseLink and Glassfish server. My application was working just fine before I tried to change my bean configuration in order to inject the ...
1
vote
1answer
69 views

Spring apps failed , Autowire get null in main.class

i am using netbeans 7.2, postgres sql,jpa2,hibernate 4.2. i just created a new maven simple java project(not webapp). However i have done setup hibernate and jpa,but autowire "wpService" get ...
0
votes
0answers
38 views

Accessing related entity of an entity stored in HttpSession

I have an image upload/store application in which I have a User entity having multiple related images(List<Image> images using OneToMany relationship). I am iterating images of the user in ...
0
votes
1answer
46 views

JPA Inheritance mapping multiple implementations

I have a problem with JPA inheritance. See my entities below. I have a Person that can be in either a House or a Car, never at the same time of course. Both Car and House implement the PersonHoldable ...
1
vote
1answer
29 views

Eclipselink Batch vs fetch-join reading in Fetch Groups is this possible?

I have a situation whereby I would like to create a query against an entity using EclipsLink JPA, I require 5 fields from this entity of which it has many. 2 of those fields are joined OneToMany ...
0
votes
1answer
33 views

eclipselink jpa operator details

I am using 2.4.1 eclipse link and oracle. This document lists several operator, which can be used while writing queries. There is one example as well. I want to use dateDifference function. Where can ...
0
votes
1answer
31 views

Play! does not create JPA config on read only replica

I'm currently trying to move part of the SELECT query from the main DB to our read only replica. These queries are mostly used for stats and things like that and as stated are all read only. I added ...
2
votes
0answers
45 views

Add 2 list in parameter in JPA using In Query

I want to pass two list in jpa query with tuple using IN query for eg . select custid from employee where (custid,name) in ((1,"ford"),(3,"eli")) This is normal query and it works, but here i have ...
0
votes
1answer
35 views

(JPA) cannot implement Many to One relationship properly with hibernate.hbm2ddl.auto

I was trying to build a small project using JPA & EJB but I am already stuck in a very early stage.... Here's the issue. I have three entities - Customer - Item - Rental And as you can derive ...
-3
votes
2answers
62 views

what is these methods “with” and “and” in java?

I am reviewing a new project code. I found the following line: crudService.findByNamedQueryFirstResult("TableA.findby.custid", with( "custID", IndividulaID).and("flags", ...
0
votes
0answers
59 views

Trying to persist a detached entity

I'm having a problem in time to save a new User. The object has a list of User Groups, but when I try to save a User with a Group associate I am getting the following exception: Caused by: ...
0
votes
1answer
30 views

Delete entities data with entity name

Im using the entityManager and i want to delete the data from specific entity with the entity name how can i do that . I have tried to use entitymanager.removeAll() without success,there is different ...
0
votes
2answers
42 views

id cannot be zero error while inserting new entity

I am trying to insert a new entity in app engine datastore using JPA. I am getting the error below. Can someone please suggest what could be wrong. java.lang.IllegalArgumentException: id cannot be ...
0
votes
1answer
20 views

jpa - transforming jpql join query to criteria api

I was trying to transform this JPQL query; SELECT s FROM QuestionSet s JOIN s.questions q WHERE q.appointedRepetition.date < :tomorrow to its criteria api equivalent, here is what I have so ...
0
votes
1answer
38 views

JPA/Hibernate remove entity sometimes not working

I have the following code that usually works well: public void delete(T object) { EntityManager em = getPersistence().createEntityManager(); EntityTransaction et = em.getTransaction(); try { ...
0
votes
1answer
38 views

Configuring EJB on JBoss AS 7 using JTA datasources: every statement is commited

everybody! I've been trying to find the answer for some time but I didn't manage. I try to configure my application and make it work under JBoss Application Server 7.1.1, using Enterprise Java ...
0
votes
0answers
43 views

Incomprehensible NullPointer with jpa Query

EDIT Okay, the error isn't beacause of the sql query. In the debug mode, when i jump into the method, it goes to a class called J9VMInternals. The execption get called from the line #276. I found some ...
1
vote
1answer
45 views

JPA can not update entity

My problem is when I create a debit I can see it created on Database, bu the "amount" I changed later in the method is never reflected to DB, what am I missing here? void createDebit(){ Debit ...
0
votes
2answers
39 views

Creating tables using JPA with Hibernate (joined tables)

I'm a newbie in JPA world and here I'm stuck with this issue. What I tried was to export schema from annotated entities by using new SchemaExport(config).create(true, true); and It gives me ...
0
votes
1answer
35 views

JPA entities relationship and criteria builder for joined column

My Application has these entites: @Entity public class proposal implements Serializable { @Id @Basic(optional = false) @NotNull @Column(name = "F1PRP") private Long proposalCode; //more ...
2
votes
0answers
36 views

Hibernate EntityManager - Closed Connection

I'm using EntityManagers to perform operations on the DB. However, and this happens like 20% of the time, the connection obtained by the EntityManager is closed and I can't perform any action. The ...
1
vote
1answer
42 views

JPA 1: JPQL for ORDER BY NULLS LAST

Is there a way to do an ordering in JPQL query like: SELECT v FROM Vehicle v WHERE ... ORDER BY v.lastUserUpdate DESC NULLS LAST, v.id DESC; The NULLS LAST breaks the query. Is there a correct ...
0
votes
1answer
47 views

jpql - selecting some elements in one to many collection

In our domain model we have @Entity @SequenceGenerator(name = "wordlist_seq", sequenceName = "wordlist_seq") public class QuestionSet { @Id @GeneratedValue(strategy = GenerationType.SEQUENCE, ...
0
votes
1answer
28 views

Not able to insert using entity manager ORA00904

I am very new to the concept of EJB's. I am trying to insert values from the front end into database using Entity classes but every time I do that, i am getting this error: ...
0
votes
0answers
12 views

Mapping collections using classification / filters

I have this database model: TABLE ORDER_ITEM ( ID NUMERIC PK, COMMENTS VARCHAR(100), ORDER_PRICE NUMERIC, ITEM_ID NUMERIC FK ) TABLE ITEM ( ID NUMERIC, ... ITEM_TYPE_ID NUMERIC FK ) ...
0
votes
1answer
34 views

setting own Key in Entity while using app engine

I am using eclipse to create a app engine based application where I am also using app engine datastore(using JPA) using endpoints. I wrote a test application with help from ...
0
votes
1answer
24 views

Bean Validation Fails on Hibernate Proxy? Expected Behavior?

Im using hibernate-core-4.0.1.Final hibernate-validator-4.2.0.Final I have a lazy loadable Entity @NotNull @OneToOne(fetch = FetchType.LAZY,optional = false,cascade = CascadeType.PERSIST) ...
0
votes
0answers
13 views

Error when deploying simple app Eclipse + Hiberante + Glassfish, Module type not recognized

im currently investingating the use of Glassfish as the app server for a personal project, for testing the integration i generate a very simple JPA project with one entity and add the jpa project to a ...
1
vote
2answers
50 views

Delete data from JPA without using SQL

im familiar with this following way to delete the data (just the data ,not the entity itself) from the entity entityManager.getTransaction().begin(); entityManager.createQuery("DELETE FROM " + ...
0
votes
0answers
23 views

Setting key in Entity class in android

I am trying to create an entity (using JPA with google datastore backend and using eclipse to generate end point class and libraries) where I want to use one of the fields(emailaddress) as the key. ...
-3
votes
0answers
33 views

How does the JPA hide implementation of in-memory and relational database items from the applicaton developer with reference to toplink type mappings? [closed]

Please can someone tell me how does the (or a) JPA hide the implementation of in-memory, and relational database items, from the application developer and what the relevance of toplink type mappings ...
0
votes
2answers
32 views

Hibernate weird behavior using in clause inside inner query

I am using JPA with Hibernate and I saw a weird behavior today. The following query works fine: select x.fichaCaracterizacao.id from FichaParecer x where x.departamento in :departamentos ...
1
vote
2answers
29 views

Using dynamic calls as criteria for a jpa call

In the following code we get the data from specific entity (Pet). Can I use this code to get dynamically any entity (instead of pet use customer ,order etc) CriteriaQuery<Pet> cq = ...
1
vote
1answer
38 views

Read Data from JPA the ways to do it

I read in the documentation and i see that to read the jpa data i need to use the following code. this is the only way to read the data from the JPA tables via sql? factory = ...
0
votes
1answer
22 views

JPA Annotated objects as regular Value Objects

I have a class that has JPA annotations.. @Embedded, @AttributesOverride, etc. Can I use this object as regular POJO / VO? What happens to these annotations then? Are they simply ignored? Or they will ...
1
vote
0answers
56 views

Trouble configuring Play 2 to run with JPA (persistence)

The folowing error is being showed when a try to persist data: [PersistenceException: [PersistenceUnit: update] class or package not found] In ...
0
votes
1answer
35 views

Auto key generation

I have a table: CREATE TABLE IF NOT EXISTS `ePrzychodnia`.`admins` ( `id` INT NOT NULL , `firstName` VARCHAR(45) NOT NULL , `lastName` VARCHAR(45) NOT NULL , `personalId` VARCHAR(11) NOT ...
0
votes
1answer
30 views

JPA: cant persist entity in Managed Bean

I'm new to jpa and jsf. I'm trying to develop simple web app using jpa and jsf. I have installed mysql and have configured Glassfish to work with it. I have created small project, that consists of one ...
0
votes
1answer
47 views

IllegalArgumentException: Unknown entity: models using JPA in Play Framework 2

I'm trying to persist data with Play 2 using JPA, but i'm getting: Execution exception [IllegalArgumentException: Unknown entity: models.Stream]; Stream.java ` package models; import ...
1
vote
2answers
39 views

How to construct a JPA assossiation: person has a relation to other persons (friends)

I have an entity Person which has friends, so a assosiation to other Persons: @Entity public class Person extends Model { @Id @Constraints.Required @Formats.NonEmpty public Long id; ...

1 3 4 5 6 7 217