1
vote
0answers
7 views
Spring Data JPA and MySQL: How to avoid “duplicate entry” error in multithreaded environment?
My web application's database infrastructure is layered like this:
Spring Data JPA
JPA
Hibernate
C3P0 pool
MySQL
Some transactions take quite some time, sometimes one minute for one big ...
0
votes
0answers
17 views
How to realize ON UPDATE CASCADE and ON DELETE CASCADE in Hibernate(JPA)?
I have two tables: Accounts and Mails.
1 user from Accounts can have some mails. When user deleting him profile (from Accounts), hibernate should delete all mails (from Mails).
Accounts consist of id ...
0
votes
0answers
11 views
Group by and join with Hibernate and JPA
I have some models with dependencies between them. Here are the models:
@Entity
public class A extends Model {
@Required
public String name;
@Required
@ManyToOne(fetch = ...
0
votes
1answer
10 views
JpaRepository delete child elements
I'm trying to do a very simple delete operation, but somehow it doesn't work since I updated the DAOs to JpaRepository. Basically it's this:
A a = aRepository.findOne(id);
...
0
votes
0answers
13 views
Hibernate Naming Strategy for @Index
I'm trying to change the way Hibernate names my indexes but cannot find the place where this is done. There seem to be no methods in the various NamingStrategy implementations.
I'm using a table per ...
0
votes
0answers
18 views
Spring Template Project jpa annotations
I have a one to many relationship: Order and Items. An Order may have lots of items
The code below (all code) is auto generated by Spring Template project:
On the Order Side:
...
1
vote
0answers
21 views
How to write a producer-consumer using JPA
Currently I have a JPA entity for a kind of tasks. Some processes write to that table, and a scheduled process works on that tasks, and changes the state when ready. I need to prioritize tasks, and to ...
0
votes
0answers
21 views
Getting updated object from DB without merge using Hibernate
This question is more about JPA/Hibernate architecture than a specific problem. Due to my wrong decisions I've faced with a problem.
myObject.start();
myClassDao.update(myObject);
These 2 lines ...
0
votes
2answers
25 views
JPA insert parent and child entities in the same transaction
I'm completely stuck in this matter, maybe someone can help.
I have two entities, Parent and Child. Test1Entity is the parent, Test1ChildEntity is the child. Great naming, of course. The database is ...
-1
votes
0answers
23 views
Migration from eclipselink to hibernate as the persistence provider
I am working on a project that up to now has been using eclipse link as its persistence provider, due to some constraints being put in place we must now use Hibernate instead.
I have found this link ...
2
votes
1answer
29 views
Jndi, hibernate and entitymanager persist and flush method no record in database
I have problem with flush data to PostgreSQL database in SpringMVC.
When i use entityManager.flush().
The Table is created in PosgreSQL, I can use pgadmin3 and it exists but the problem was that ...
0
votes
0answers
22 views
JPA 2.0 / Hibernate - delete shared entity automatically when there are no longer any references
The situation is basically a Child entity that's referenced by two or more Parent entities. What I'd like to happen is for the ORM to delete the Child when there are no longer any Parents that ...
2
votes
1answer
45 views
ID from parent to child in hibernate
Here is my code. I would like to generate an automatic ID based on parent class. I'm using a method to create Airport, so my ID it's coming with is a null value. ID in AirportModel will be generated, ...
0
votes
1answer
9 views
Hibernate AnnotationException unknown entity on Enum
I want to assign different Roles to Users for every Organization they work in. I got the idea for the entity GrantedRole from another SO question.
However, when I try to run my unit tests, they all ...
0
votes
1answer
14 views
How do you write a JPA join expression when joining on non-primary key columns?
I'm using JPA 2.0, Hibernate 4.1.0.Final, and Spring 3.1.1.RELEASE. How do I write a JPA join that joins the two tables on a non-primary key column? I have two entities, Link and Training, both with ...
0
votes
1answer
28 views
Error with “orphan-removal” when cloning an object
Have a @OneToMany relationship in Parent class mapped with orphan-removal="true" and Cascade.ALL.
First, I persist the parent object.
Then I clone the parent at the ManagedBean, like this:
Parent ...
0
votes
1answer
32 views
How to create a unidirectional relationship where the relationship is owned by the child entity, but the parent is where the relationship is defined
I'm struggling with how to create the following relationship in JPA. It's a OneToOne Unidirectional relationship where the parent knows the child, but the child doesn't know the parent, but I want the ...
0
votes
1answer
51 views
Map<String, String> with JPA
I have JPA entity like this:
@Entity
@Table(name = "ATTRIBUTE")
public class Attribute {
//ID stuff
@Column(name = "NAME", nullable = false)
private String name;
@Column(name = ...
0
votes
0answers
33 views
Hibernate persistence Java EE jpa
For my Java EE Project, using netbeans7.1, GlassFish3.2 and postgreSQL9.2 and I want to test JPA persistence classes.
I tryied javaee Persistance class to get an entityManager but it failed because ...
0
votes
1answer
48 views
JPA orphanRemoval = true tries to update not delete
I have quite specific situation and tried different scenarios to acheive delete from DB when deleting from java collection.
I've House that has relation OneToMany to Room and Room with relation ...
-1
votes
1answer
32 views
org.hibernate.AnnotationException: @OneToOne or @ManyToOne on entities.Ques#tion.examId references an unknown entity: long
I'm trying to setup JPA with a hibernate implementation for the first time with this test project. Ran into the following error:
Exception in thread "main" javax.persistence.PersistenceException: ...
1
vote
1answer
38 views
Object is not saved in mysql schema by Hibernate 4 (Jpa 2.0 + Jta using Atomikos transaction manager)
I am reading the book Pro Spring 3 and in the chapter about Global Transactions there is some example code for persisting an object into two different mysql schemas.
I am running the code but the ...
0
votes
1answer
17 views
Hibernate database is cleared
Hi i want to ask you what value of hibernate.hbm2ddl.auto set. I want to only update schema when they will be changed and adding new tables. if i set to update it doesn't update tables when entity ...
0
votes
3answers
36 views
EntityManager is null. Cannot inject
I'm trying to connect my project with db. I have one project that is already connected and operates on this db. And i need second one and communication between them using jms. I configure secon to ...
0
votes
0answers
15 views
How do I write a JPA query that checks if a collection has at least one item in another collection?
I'm using JPA 2.0, Hibernate 4.1.0.Final, and Spring 3.1.1.RELEASE. I have this entity with this field ...
@Entity
@Table(name = "user")
public class User
{
…
@ManyToMany
@JoinTable(name ...
0
votes
2answers
46 views
EntityManager null pointer expection
I am getting a null pointer exception when I try to query a result from DB.
Here's the error:
java.lang.NullPointerException
at main.java.utils.WebAppInfo.getAppName(WebAppInfo.java:14)
at ...
0
votes
0answers
13 views
jpa many to many in same table / entity
the MIZRAH_TASK_STATUSES_FLOW table contains 'from' and 'next' which represents ids in the MIZRAH_TASK_STATUS table.
the problem is that when i retieve rows from the MIZRAH_TASK_STATUS table, i get ...
0
votes
1answer
29 views
JPA EventListener method not called on change to many-to-many collection?
I am using JPA with Hibernate as the implementation in my Spring webapp.
I use EntityListeners for auditing (Spring-data) and other notification purposes. In general it works fine. However, when ...
0
votes
1answer
18 views
How to add a data to mysql table via Hibernate(one-to-Many)
I have 2 mysql tables: Accounts and Mails.
Accounts consist of id and user data.
Mails consist of id, user_id, data and foreign key user_id -> Accounts.key (fk_Users)
How I can add and get data to ...
0
votes
2answers
27 views
Ways to improve this schema/abstraction?
I'm making a webapp for an online exam module and was wondering how my current design and abstraction can be improved. The exams are multiple choice.
I have three tables in my database so far:
...
1
vote
0answers
22 views
How to create a Map using hibernate with a join or query (Title is not enough to explain it)
What I am trying to do is get Hibernate to produce a Map for me based on either a Join or a select (whichever will work). That part is statically known and thus I shouldn't have to go out to the DB to ...
0
votes
0answers
9 views
Is it possible to place an unpersisted entity in Hibernate's L2 cache?
My app Spring app uses Hibernate as the ORM provider.
A user is represented by an entity, called User. No surprises here. In order to provide support to my clients, I want the ability to log in as a ...
0
votes
0answers
20 views
JPA PostLoad and PreUpdate with Embedded columns
Situation: NotificationProfile entity has collection of NotificationProfileIntegration entities which has embedded IntegrationNotificationCutOff. It is legacy database and i cannot modify it. Someone ...
0
votes
1answer
19 views
Mapping a OneToOne relationship within the same table with discriminator column
I have a problem that resembles the following structure.
Entity Car is an abstract entity that can be derived into CityCar, StationWagon, PickUp... -
Each Car has one Engine, which is an abstract ...
0
votes
2answers
40 views
postgres + hibernate, sequence in database is negative, why?
we have a very strange behaviour on our productions system.
db: posgres 9.0.13
spring: 3.1.2.RELEASE
hibernate: 3.5.3-Final
clustered tomcat setup with 5 tomcats running the same web app and ...
0
votes
1answer
15 views
JPA Modelgen generates model classes but does not compile them
We are using JPA 2, Hibernate and the Criteria API in our project for which we need the Model Generator of Hibernate to create meta model classes.
In our Ant build process we included the annotation ...
2
votes
3answers
115 views
+50
Can Hibernate use logical name for entity property different from field name?
Let's say, there's a Hibernate entity configured with field access by means of annotations. I would like to map a Java class field _name so that its logical name for Hibernate be name, for instance, ...
0
votes
1answer
35 views
What is the work-around for deleting orphan entities using JPA 2.0 and @OneToMany?
I'm using JPA 2.0, Hibernate 4.1.0.Final, Spring 3.1.1.RELEASE, and Java 1.6. I have this entity with a one-to-many relationship to another entity …
import javax.persistence.CascadeType;
...
@Entity
...
0
votes
0answers
26 views
JPA hibernate SQL query
Hey i have problem with JPA hibernate SQL query where i serach a elements from one basic attribute and one which is in the basic entity in the List. so i have to compare with array string, beacause i ...
0
votes
1answer
38 views
JPA + Hibernate - One to Many: Get a particular entity only
I have following entity structure:
class A {
@OneToMany(mappedBy = "aInstance",
fetch = FetchType.LAZY,
cascade = CascadeType.ALL,
orphanRemoval=true)
...
0
votes
0answers
28 views
Hibernate mapping foreign key to ID as opposed to Entity
I want two entities:
Trace: trace_id PK, ...
TraceEvent: trace_event_id PK, trace_id FK (Trace), ...
Where the TraceEvent table has a column trace_id that is a foreign key to the PK of table ...
0
votes
0answers
25 views
Spring JPA with lists of the same entity type
This is now driving me insane, and no end of googling is helping me out; so I hope someone here can help :)
I have a class called ImpactAssessment. It has 2 lists of type SimpleListItem:
@Entity
...
0
votes
1answer
25 views
Hibernate - “detached entity passed to persist” error for already persisted child
I have an entity, which is already persisted and want to add it to a newly generated parent entity (not yet persisted). If i try to persisted the parent then, i get the error "detached entity passed ...
0
votes
0answers
29 views
joining columns to collection table when one field is not null
I've got 2 classes:
@Entity(name = "Market")
@Table(name = "mi_market")
public class MarketModel {
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable(name = "mi_market_language", ...
0
votes
0answers
16 views
joining non primary key coloumns in jpa
Well, I am new on EJB/JPA my question is how to join two non primary key attributes of tables.
My first entity class is Projects.java
public class Projects implements Serializable {
...
0
votes
0answers
24 views
Persisting New Entity Won't Join Into JoinTable
I have two entities, one is called UserProfile and other is Groups. They have following @OneToMany and @ManyToOne annotations:
UserProfile entity class:
@ManyToOne
private Groups usersGroup;
...
0
votes
1answer
28 views
Hibernate: Double entries in ManyToMany Jointable
I have a ManyToMany Relation in my Domain Object and i want to user double entries in the JoinTable.
At the moment my code looks like this:
@ManyToMany(cascade = {CascadeType.ALL})
...
0
votes
0answers
33 views
one-to-many with hibernate 4.2.2
I have the below entities.
Order{
@Id
private Long id;
@OneToMany(fetch=FetchType.LAZY)
@JoinColumn(name="order_id_fk", updatable = false)
private List<OrderRelease> orderReleases;
}
and ...
0
votes
1answer
31 views
Map two columns without Primary Key
I've got 2 tables - Person and Requests.
Person (id is PK):
id name req_id
Requests(id is PK):
id rid
In java:
@Entity
public class Person{
@Id
Int id;
String name;
String req_id;
...} ...
0
votes
1answer
16 views
Hibernate (or EntityManager?) adding “where 0=1” to query
I'm using the JPA EntityManager + Hiberate, and a myserious piece of the where clause is appearing. The debug from Hibernate is basically showing:
select /* bunch of columns */
from some_table
where ...





