This tag is for questions about the version 2.0 of the Java Persistence API.
1
vote
1answer
40 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
75 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
130 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
69 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
66 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
28 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
186 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
73 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 ...
0
votes
0answers
32 views
How can I stop on error in transaction stop rolling back every thing else?
I have public method that has loop in it calling a private method.
I am trying to prevent any kind of exception happing in the private method from rolling back entire thing. In other word if there ...
0
votes
1answer
48 views
Reusing entity manager by em.clear() or creating a new entity manager?
In my case of application managed transaction, I've to choose between:
Using one single EntityManager and calling clear() before each new transaction. Share the EntityManager using a ThreadLocal.
...
0
votes
0answers
30 views
jpa query get entity with their all childrens
I have got entity something like that:
public class Group{
@Id
private int id;
@JoinColumn(name = "PARENT_ID", referencedColumnName = "ID")
@ManyToOne
private Group parentid;
...
1
vote
0answers
61 views
Adding Hibernate Provider in Eclipse [closed]
I am a new bee in JPA. I am trying to add Hibernate support in Eclipse but i am unable to do this from various searches in Google. I am able to add EclipseLink in Eclipse but i want Hibernate provider ...
1
vote
1answer
121 views
JPA Named Query with boolean criteria doesnt work if a null value is passed as boolean parameter
This Works:
@NamedQuery(name="all_submissions",query="select s from Submission s where (s.id= :id or s.testCode= :code or s.user.email = :email) and s.readOnce != NULL")
s.readOnce != NULL
but ...
0
votes
0answers
65 views
JPA2 unable to get the desired sql
I'm trying to achieve the equivalent inline sql with Criteria APi.
select distinct t1
from tbl_ticket t1
left join tbl_tickets_updates t2 on t1.ticketnr = t2.ticketnr
where (t1.description ilike ...
0
votes
0answers
60 views
Can't create JPA tables into derby with glassfish3
I am trying to create clone database(s) with JPA (2.0) into derby from a legacy database. The JPA entities were generated from an existing database (by JDidea tools I think), and now I am using ...
0
votes
1answer
18 views
Update collection when remove the same entity from other collection
I have 4 classes entities: CtPersonaFirma, CtFirmaDocumento and CtContrato. A person may sign several contracts and a contract can be signed by multiple people.
CtPersonaFirma: Contains persons ...
0
votes
1answer
76 views
JPA Query to select based on criteria alongwith pagination
I have a submission table with ID,Name,Code among other properties. My requirement is to search for records based on the mentioned properties and return a paginated set.
This is the pseudocode for ...
1
vote
1answer
52 views
When using JPA entityManager why do you have to merge before you remove?
For a while now I have been wondering why when using JPA, do I have to write my delete methods like this:
@Transactional
public void delete(Account account)
{
if (entityManager.contains(account))
...
2
votes
1answer
118 views
Cannot insert NULL values into database
We use JPA to load/persist our entities in a prostges database. In one case i must persist a entity with a native query. Heres is the code:
String sql = "INSERT INTO recording ...
2
votes
1answer
87 views
unable to merge entity with derived entities
i am trying out derived entities using @JoinedColumns,
let me show you my code,
below is the sql code,
create table TBL_EMPLOYEE_FIVE(
EMP_ID integer ,
NAME varchar(50),
COUNTRY ...
0
votes
1answer
78 views
JPA2, LEFT JOIN, Criteria API
I have the following situation SQL that I need to implement into my criteria builder for dynamic query creation.
select t1.ticketnr
from tbl_ticket t1
left join tbl_tickets_updates t2 on ...
0
votes
1answer
150 views
Unable to acquire a connection from driver [null], user [null] and URL [null] postgres
Good Morning
I use Eclipse link and JPA, I want to test a small native query and i have an error.
Would you please help me,
I searched in this site and in others and I didn't found a solution.
thank ...
0
votes
1answer
62 views
Select only JPA Collection members meeting condition
I'm trying to select entries for Entity A where all of the children in its collection of CReference entities meet a condition. The query I currently have only requires the conditions to be met on at ...
0
votes
2answers
58 views
Fetch a list in a @OneToMany association?
The thing is, an user has one or more properties, so that's why is this way my entity class user
@Entity
public class User implements Serializable {
private static final long serialVersionUID = ...
0
votes
0answers
111 views
How update session attribute after loading with JPA
I have a problem with updating session attribute after loading some data with JPA.
I set/get session attribute:
request.getSession().setAttribute("user", user);
User user = (User) ...
0
votes
2answers
77 views
Why won't my EJB Entity work with a non-relational table, when using createNativeQuery?
I'm trying to use entities with a MySQL ndbcluster table. This table type doesn't allow foreign keys, but up until now it hasn't been a problem with my entities.
However, I have run into a bit of a ...
0
votes
1answer
209 views
How to make a CriteriaBuilder join with a custom “on” condition?
I want make a query where I join 2 tables, using the CriteriaBuilder. In MySQL the query I'm trying to make would look like this:
SELECT * FROM order
LEFT JOIN item
ON order.id = item.order_id
AND ...
0
votes
1answer
67 views
jpa 2 query to retrieve data using join table
I have table structure as follows
table user: iduser, firstName, lastName, username, email, dateJoined, dateOfBirth, password
table tag : idtag, tagName
table post: idpost, title, content, iduser, ...
1
vote
1answer
30 views
JPA StackOverflowError when loading data in relationship tables
I'm trying to implement loading in three tables (the beginning of the problem with mapping)
Products:
@Entity
@Table(name = "products")
public class Product implements Serializable {
@Id
...
2
votes
2answers
218 views
Mapping postgreSQL JSON column to Hibernate value type
I have a table with a column of type json in my postgreSQL DB (9.2). I have a hard time to map this column to a JPA2 Entity field type.
I tried to use String but when I save the entity I get an ...
1
vote
2answers
130 views
EclipseLink - No [EntityType] was found for the key class [CurriculumTree] in the metamodel
I get the following in my axis2 web service after deploying into tomcat.
java.lang.IllegalArgumentException: No [EntityType] was found for the key class [VOs.CurriculumTree] in the Metamodel - ...
2
votes
1answer
41 views
Share JPA entities among applications
Suppose having several JavaEE 6 applications using the same entities in a database - what would be the best way to share the JPA Enitity classes among them?
Should they be included as classes in each ...
0
votes
0answers
21 views
Optimizing the huge data processing in JPA
I have a process where huge number of rows/entities are persisted and retrieved. And I need to improve its performance.
Below is brief description of the process with an example.
Say we have and ...
-1
votes
1answer
476 views
How to write JPA native query to join two tables. Eclipseink JPA,Glassfish3.x,EJB3.1, MySQL
What would be the correct way writing JPA native queries with joins and with Eclipselink JPA2.0 entities?
Can some one tell me to execute the following SQL query using Eclipselink JPA native queries ...
0
votes
0answers
48 views
JPA2 collections
Sorry for my bad EN.
I have very simple entity
@Entity
@Table(name = "\"Book\"")
public class Book extends DomainLong {
@Column(name = "\"title\"")
private String title;
@Column(name = ...
1
vote
0answers
16 views
How to corresponding Entity to this new tables
I'm using EJB and JPA to develop a Java EE project. The server is Jboss AS 7.1 which uses Hibernate as the JPA provider.
In this project, I'd like to add many new tables to the database, I'd also ...
0
votes
1answer
31 views
Hibernate JPA Cannot Create due to FK
When I try to create a new category in my application I am getting the below error which is complaining about a FK constraint. However the FK it is complaining about maps the Category Description to ...
0
votes
1answer
50 views
Trying Derived Identifiers using @JoinedColumns, got error Attempt to modify an identity column
This is my sql table structure:
create table TBL_EMPLOYEE_FIVE(
EMP_ID integer generated always as identity(start with 50, increment by 4),
NAME varchar(50),
COUNTRY varchar(50),
...
0
votes
1answer
53 views
JPA2 Criteria: How to avoid a cross join using path.get()
If you have this entity:
@Entity
public class A {
@ManyToOne
@JoinColumn(name = "bField", nullable = true)
private B myBObject;
}
And I have a generic generator of Criteria who will ...
0
votes
0answers
39 views
how to bind the entity through the additional table with a composite key
I have a problem with binding the entity through the additional table with a composite key:
class Product
@Entity
public class Product implements Serializable {
@Id
@Column(name = ...
1
vote
0answers
40 views
Dynamic JPA Entities
I'm using EJB and JPA to develop a Java EE project. The server is Jboss AS 7.1 which uses Hibernate as the JPA provider.
In this project I'd like to add many new tables to the database. I'd also like ...
0
votes
2answers
71 views
Make a field transient for serialization, but non-transient for JPA
Question:
Is it possible to have a field persisted by JPA but skipped by serialization?
It is possible to achive the opposite (JPA skips a field and serialization doesn't), and if this feature is ...
0
votes
1answer
45 views
Persisting a member variable in JPA, when only the type is important
Problem: How to store a field when only its type is important.
Description: I have simplified the problem description to highlight the issue. The class Dragon has a behavior, Roar, which is stored as ...
1
vote
1answer
32 views
@PreUpdate doesn't return correct exception message
To validate my entity beans I have created this validation method inside my bean
@PrePersist
@PreUpdate
public void validate(){
if (startTime.after(stopTime)) throw new ValidationException("Wrong ...
0
votes
1answer
46 views
MySQL/JPA : How create a correclty relation and cascade?
I was very impress with my project, but suddenly I notice that I am doing something very wrong, 'cause, every create, merge, delete I was doing manually, but I should let the JPA take care of that for ...
3
votes
2answers
108 views
Got Null when querying datastore by key
I have two models, Book and Chapter, in a one-to-many relationship. I manually create the keys for both Book and Chapter. To persist, I create a book object then add an instance of chapter to it and ...
1
vote
1answer
27 views
Derby: bulk import doesn't set AUTO_INCREMENT
Say I've got the following table, generated by Eclipselink.
CREATE TABLE "ACCOUNT" ("ID" BIGINT NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), "DTYPE" VARCHAR(31), "EMAIL" ...
0
votes
1answer
41 views
How to persist but avoid unique keys exceptions?
My problem is simple:
A user has an address, address is composed of city, state and country.
So for that I have this structure:
public class User {
..
//bi-directional many-to-one association ...
0
votes
1answer
89 views
Reusing Persistence Context in JPA
i was just working on @EmbededId code, i want to do an auto increment before the entity is persisted, this is want to do without use of @GeneratedValue and an identity column,
below is the table with ...
0
votes
2answers
444 views
Exception [EclipseLink-4002] while using native query for joining two tables
I have 2 tables Sponsors and Study.
The columns in Sponsor and Study tables are:
Sponsors table structure:
SponsorId: int primary key auto_increment,
SponsorName: varchar(30) unique not null,
...





