This tag is for questions about the version 2.0 of the Java Persistence API.

learn more… | top users | synonyms (3)

-1
votes
0answers
19 views

ignorecase in criteria builder in JPA

Friends How can we do a ignorecase in the criteria builder if I have private final criteriaBuilder cb then i can only use cb.asc or cb.desc but not the ignorecase Please suggest
1
vote
0answers
11 views

Hibernate/JPA 2.0 - Table per Class and @EmbeddedId Inheritance

Aware as I am that @Embeddable components inheritance in Hibernate is not supported, I'm trying to find the best strategy to deal with my very custom entity mapping. The story is as follows: I have ...
0
votes
0answers
26 views

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:

I am using Maven 3 and JDK 1.7. When I tried to do mvn install, I am getting the following errors [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1: compile ...
0
votes
2answers
31 views

Issues with my criteria query when calling SQL created function

In my Postgres 9.1 database I have a li table that is mapped by ORM (Hibernate) in the following Li class: package a.b; @Entity @Table(name = "li", schema = "public") ...
0
votes
0answers
9 views

Bulk insertion of CollectionTable elements in Hibernate / JPA

We are using Hibernate 4.2 as the backing library for JPA 2.0 entities. We have an entity like the following: @Entity public class MyEntity { .... @ElementCollection @MapKeyColumn(name = ...
0
votes
1answer
14 views

Determining subtype of entity

Let's suppose I have this entity: @Entity @Table( name="products" ) @Inheritance(strategy=InheritanceType.SINGLE_TABLE) @DiscriminatorColumn( name="discriminator", ...
0
votes
0answers
20 views

Update JPA 1 to JPA 2 - Google App Engine

I want to update my GAE web app to use JPA 2.0. From the doc here, it says that I have to copy the content of appengine-java-sdk/lib/opt/user/datanucleus/v2/ to lib folder of the project. This are ...
0
votes
1answer
22 views

ON CASCADE DELETE on JPA2 many-to-many relationship

I have read a lot of topics regarding cascading and many-to-many associations, but I haven't been able to find an answer to my particular question. I have a many-to-many relationship between ...
0
votes
0answers
17 views

How do I get a non-Transient field into @PrePersist or any other Listener method with EclipseLink?

I need a field (String would be OK) in a @PrePersist method of an EntityListener. Any field which does not go to the database (meaning a @Transient field) does not reach the @PrePersist (or any other) ...
0
votes
1answer
33 views

Hibernate Generate Primary Key Using Trigger

I am using JPA2.0 and Hibernate 4 For generating primary key in table, I am using table trigger. Trigger works fine if I am using Long as data type for Primary Key. However if I am using String as ...
0
votes
1answer
28 views

Spring Data JPA - Using @Transactional in a CDI environment instead of Spring environment

I realized after writing this question I could sum it up in a few sentences. How can I manage transactions in Spring-Data-JPA with CDI the same way you would by using @Transactional in Spring itself? ...
0
votes
0answers
48 views

How to use like condition in JPA 2.0 - Hibernate for Criteria Builder

I have the following in DAO class for my filter condition ParameterExpression<Long> pexp = criteriaBuilder.parameter(Long.class,"empNo"); ...
0
votes
1answer
34 views

JPA named query cannot be resolved with Hibernate

I have added new named query: @Entity(name = "books") @NamedQueries({ @NamedQuery(name = "books.findByCategoryId", query = "SELECT DISTINCT b.* FROM books b WHERE b.categoryId ...
0
votes
0answers
15 views

JPA provider not found in JUnittest of a google app engine eclipse project

I read the google documentation for app engine unitteesting I created a JUnittest in Eclipse in a Google AppEngine Project. without JPA interaction the JUnit4 works fine. In the productive code the ...
0
votes
0answers
38 views

Oracle ORDImage and EclipseLink || Hibernate

I'm trying to create ORM with EclipseLink in my Java EE + OracleDB application. The problem is that I don't know how to map ORDImage type from database. I tried to use @Struct but without a success. ...
0
votes
0answers
47 views

spring security autorization in a jsf-jpa web application

I use spring security in a web application (jsf 2 and JPA2) for authentication and authorization. authentication is successful, but the authorization is failed. And I was not able to display the ...
2
votes
1answer
112 views

How to override default Spring JPA exception translator behavior?

I don't know if this approach is the best or not. But I have a requirement where I need to handle Spring JPA repository (DAO layer) exception. Handle in the sense may be propogate it to UI or may be ...
0
votes
1answer
49 views

JPA Eclipse link query.firstResult() & query.setMaxResults() with Postgres

Postgres supports offset and limit on SQL statements to support pagination style queries. With limit and/or offset in the queries the results come back much faster from the DB. I am using Eclipse ...
1
vote
1answer
78 views

Spring Data JPA: How can Query return Non- Entities Objects or List of Objects?

I am using spring data JPA in my project. I am playing with millions of records. I have a requirement where I have to fetch data for various tables and build a object and then paint it on a UI. Now ...
0
votes
1answer
22 views

NamedQuery returning object instead of column

Hi I have a namedquery defined as below but when I execute it it retunrns me the whole object rather than just the fields that I have requested. Is there something that I am missing when I only want ...
0
votes
1answer
14 views

Does BatchFetch change the fetch type?

I am using EclipseLink 2.1.0 in my Java EE application and optimized the loading of nested entity lists using @BatchFetch. Now I'm curious if this Annotation will change the fetch mode, meaning does ...
0
votes
1answer
67 views

How to make finally in try-finally wait for threads to finish?

I'm using JPA in Swing based desktop application. This is what my code looks like: public Object methodA() { EntityManager em = emf.createEntityManager(); em.getTransaction().begin(); boolean ...
1
vote
1answer
42 views

Putting unique constraint on multiple fields

Let's say I have an entity like this: @Entity public Foo { @Id private Long id; private String name; private String type; ... } Is there a way to express that name and type ...
1
vote
0answers
37 views

How to bypass JPA level2 cache for query and find

I'm using JPA2 with level2 cache enabled (jcache/memcache) on GAE. I have to run some update transactions and would like them to rely on datastore data and not the cached one. I tried to set the ...
0
votes
0answers
30 views

how to display to ten values from a MySQL database using JPA and Netbeans?

I am creating a simple inventory management system using MySQL database, JPA and Netbeans..I am currently faced with a few issues.. (I have been coding using these technologies for only 2 weeks) 1. I ...
0
votes
1answer
28 views

ManyToOne relation connect via embbeded fielld

jpa/spring-data question i have class Plant which has embbededId PlantId and i have class Image which as Embbeded field PlantId this means each image connect to a plant. so the connection is one to ...
1
vote
1answer
53 views

How do I write a MAX query with a where clause in JPA 2.0?

I'm using JPA 2.0. Hibernate 4.1.0.Final, and Java 6. How do I write a JPA query from the following psuedo-SQL? select max(e.dateProcessed) from Event e where e.org = myOrg And my domain object ...
0
votes
1answer
36 views

Are there any classes that implement javax.persistence.Parameter<T>?

I'm using named queries to fetch entities from a database using JPA and Hibernate and I came across something that was puzzling me: how come there a no default implementations of the ...
0
votes
1answer
32 views

Jpa OneToMany with condition

a JPA\Spring question i have 2 tables one table is Persons: person_id person_name second table is PersonsGraphs: person_id1 person_id2 relation_type i'm looking for away to build "family tree". ...
0
votes
1answer
17 views

EasyMock expected void

Just trying the EasyMock for the first time. I seem to get it going but I am immediately halted with the fact that the mocked class runs a method "returning" void (EntityManager.remove(abc)). I am ...
0
votes
1answer
32 views

OpenJPA - How to map View to Entity

I'm using WAS 8.0.0.5, which means I'm using OpenJPA 2.1.2-SNAPSHOT. I'm using the Criteria Query API and Canonical Metamodels. I need to access an Oracle View. The View has 1 column named GUID, ...
1
vote
1answer
102 views

Hibernate/Envers unable to read the mapped by attribute

I am unable to implement many-to-many relation using join table (http://stackoverflow.com/a/7603036 & ...
0
votes
2answers
33 views

JPQL 2.0 - query entities based on superclass entity field

I have Entity (not MappedSuperclass) Person (with id, name, surname). I also have Entity Employee extends Person (with other attributes, unimportant). Inheritance Strategy is single table. Now I want ...
0
votes
0answers
52 views

JPA 2.0 persist object with ManyToOne relationship

I have two entities "contact" and "client" with a OneToMany relationship, I want to add a contact that has a ManyToOne attribute "client" will recover from a selectOneMenu. the problem that the ...
3
votes
1answer
77 views

Spring JPA: Query builder versus Criteria Builder , which one to use?

I am going to start new project that would play with very large database, thus would be having lots of database operation. I have decided to use Spring JPA as my ORM. Now Spring JPA provides various ...
2
votes
2answers
69 views

“Errors in named queries: User.findByUserNameAndPassword ”- Not able to solve

This is the first question I have posted here, so apologies in advance if I have violated any conventions or etiquette. I can't seem to get rid of the following exception: Caused by: ...
0
votes
0answers
28 views

JPA2 query mapping constructor expression for same table twice not working

I have a problem with mapping constructor expression in JPA2 query: this is the declaration of tables and query in JPA2: QLC430_KatastarJedinicaImovine kji = ...
1
vote
1answer
54 views

hql inner join Path expected for join! error

hi have following entities; @Entity public class FilesInfo { @Id @GeneratedValue private Integer id; private String name; private String url; @OneToMany(cascade= ...
1
vote
1answer
81 views

EclipseLink JPA “invalid table in this context” with @OneToMany Map

I'm hoping I'm just doing something silly here... I'm trying to set up JPA annotations for a Map<String, Phone> and getting the following stack trace. Exception [EclipseLink-6069] (Eclipse ...
1
vote
1answer
84 views

IN and = operator in JPA query language

I have a problem regarding jpa query. There are two tables i.e. Post table and Tag table There is many to many relationship between Post and Tag Now I want to write a query such that when multiple ...
1
vote
2answers
72 views

JPA Entity - Specify Persistence Unit?

I have a JavaEE project that makes use of multiple persistence units. Is there any way to specify which persistence unit a particular JPA Entity belongs to? Some entities are in one data source, ...
0
votes
0answers
95 views

Again… Could not initialize class org.hibernate.ejb.Ejb3Configuration

I've got a real headache with it. I've searched the Internet and read a lot of answers for that problem but it still occurs on my server :/ Please help me. I am new in Java EE and developing JSF ...
1
vote
1answer
35 views

jdbc vs jpa implementation

How do I do this in JPA?? DataBase: School ------ id int PK name varchar state int FK (State(id)) State ----- id int PK desc varchar Java: SchoolShow ---------- int id; String name; int iState; ...
4
votes
1answer
71 views

Proper tearDown Hibernate testing with H2

Currently I am using the below after every test I have in my test suite. However it makes it very slow because H2 has to reload the application context after every test. Is there a quicker way to ...
0
votes
1answer
107 views

hibernate JPA composite foreign key issue on read

I am using Hibernate JPA, EnterpriseDB(PostgresPlus Advanced Server 9.2.1.3) and Jboss 7.1.1 Final and receiving an exception while reading an entity with composite primary key and (one-to-one) ...
0
votes
0answers
57 views

Embedded glassfish + JUnit testing (Eclipse / Maven)

When I try to run JUnit test from Eclipse (or Maven), I get these lines right in the beginning of the log: 23.4.2013 8:12:25 com.sun.enterprise.v3.server.CommonClassLoaderServiceImpl findDerbyClient ...
1
vote
1answer
58 views

Cannot create table in test (Hibernate & H2)

I have an image mapping table that maps images to the various items that have images. This works as expected when I make the entries in the database by hand, and am retrieving, however when I try to ...
-1
votes
1answer
27 views

JPA 2.0: Mapping between three entities

I want to implement the following relationship using JPA 2.0. Entity Diagram In a few words: A user can have several roles in a group. Is there a convenient way to achieve this? A code example would ...
3
votes
2answers
151 views

Spring Data-JPA versus JPA: Whats the difference?

I am bit confused about difference between Spring Data-JPA and JPA. I know about JPA that it is a specification for persisting the Java Objects to relational database using popular ORM technology i.e. ...
0
votes
1answer
60 views

JPA + EJB testing with embedded glassfish v3

Trying to set up a JPA+EJB testing after these instructions: http://ctpjava.blogspot.fi/2009/10/unit-testing-ejbs-and-jpa-with.html There seems to be few problems that I can't seem to get quite ...

1 2 3 4 5 37