Tagged Questions
0
votes
0answers
109 views
Hibernate and Foreign Key Constraints
I have several Hibernate mapping files with many-to-many and many-to-one sets referring to other objects. I am trying to implement a back office scheme that can delete objects but I constantly run ...
1
vote
2answers
47 views
java hibernate entity: allow to set related object both by id and object itself
I've got a following Java class which is also a Hibernate entity:
@Entity
@Table(name = "category")
public class Category {
@ManyToOne
@JoinColumn(name="parent_id")
private Category ...
0
votes
1answer
138 views
org.hibernate.MappingException: Foreign key (FK12A711396456CA10:) must have same number of columns as the referenced primary key
I'm having this error at Netbeans in my Java code:
org.hibernate.MappingException: Foreign key (FK12A711396456CA10:devolucion_master [devolucion_consecutivo])) must have same number of columns as the ...
1
vote
0answers
51 views
Auto-update foreign key collections in hibernate
I am working on an application that has many foreign-key relationships that have some rather complex business logic associated with them. We often need to add a child to a parent (sometimes a brand ...
0
votes
1answer
56 views
Hibernate: how can I delete an entity in the one-to-many relationship in the “many” side from the “one” side
I have noticed that Hibernate does not allow to delete an entity in an one-to-many relationship.
I have two tables (and entities), company and employee.
I would like to delete an employee with the ...
0
votes
2answers
261 views
annotated hibernate mapping id/long foreign key to nullable column
I've got the following class mapping a MySQL table:
@Entity
@Table(name = "category")
public class Category {
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
@Column(name = "id")
...
0
votes
1answer
540 views
Hibernate not setting foreign key on insert
I have Many-to-one relationship and when I'm trying to insert a value, the foreigh key is not passed. The hibernate doesn't include it's values in the generated SQL query.
Definition of City and ...
0
votes
1answer
49 views
Hibernate bug? Mishandling result columns, querying the DB for nonexistent ID
I observe a weird behavior of Hibernate.
I have an entity graph described in JPA/JPQL: Fill a collection/map based on related object's collection/map? (prototype-like)
Then I query this model:
...
1
vote
1answer
252 views
Hibernate doesn't insert foreign key
I have Many-to-one relationship and when I'm trying to insert a value, the foreigh key is not passed.
Enitnty Country
<hibernate-mapping>
<class name="servicedb.dal.domain.Country" ...
1
vote
1answer
67 views
Weird Hibernate / Gorm behavior in Grails Application
I have a pretty simple relation, where normally a cascading delete should work. My relation looks like this:
enum StatusName {
PENDING, SENDING, SENT
}
abstract class Notification {
...
0
votes
0answers
147 views
Mapping a table with only foreign keys in hibernate
I am new to hibernate and i want to map a table having only foreign keys using xml file.
I have 3 tables
1.UserInfo(for user details with a primary key)
2.AuthorInfo(containing author details with a ...
0
votes
0answers
58 views
@ForeignKey naming with TABLE_PER_CLASS inheritance
I wish to rename the foreign key of my child class. Is there a way to do this with @hibernate? So what happens, is that I "kind of" get duplicate foreign key in both tables named, ...
0
votes
0answers
109 views
How to tell hibernate to generate a foreign key constraint with 'on update/delete restrict'
Hibernate generates foreign key constraints like this in PostgreSQL:
ADD CONSTRAINT fk4027e58ea8b36313 FOREIGN KEY (fk_responsible_person)
REFERENCES employee (id) MATCH SIMPLE
ON ...
0
votes
1answer
125 views
hibernate-JPA, ManyToOne and TablePerClass or Joined: creates wrong foreign key
I have these 2 abstract classes:
@Entity
@Inheritance(strategy = InheritanceType.JOINED)
@Table(name="compound")
public abstract class Compound<T extends Containable {
@OneToMany(fetch = ...
0
votes
0answers
117 views
EmbeddedId with foreign keys: MapsId only works with JoinColumn
I know the title is a bit fuzzy, but bare with me.
I have three classes Spam, Bacon and Eggs.
Spam has a many-to-many relation to Bacon through Eggs. Eggs also has a int amount:
@Entity
public ...
0
votes
1answer
68 views
Use Enums instead of foreign keys
After using Hibernate Enum Mapping again today I was wondering about whether it would be a good idea to stretch it a little bit more.
To explain where my thought came from: of course we aim for a ...
0
votes
2answers
172 views
Insert with Hibernate with child objects does not return full object
I am using Spring 3.2 and hibernate-core 4.1.4 and hibernate-jpa-2.0.1. The application resource file has all the correct objects.
I have a child object RoleEntity, and it has two parents: User and ...
0
votes
1answer
58 views
In hibernate, wrong value used as parameter for fetching set
I have to hibernate entities and tables with a one to many relationship. One is a user and the other is a car object. I believe where the discrepancy is, is that I am attempting to join on field ...
0
votes
1answer
1k views
Hibernate Issue : Foreign key must have same number of columns as referenced primary key
Goal : I want to have importJobId in ImportJob as foreign key for id of allocation table, such that when we have importJobId then and then only we can have id in allocation as without Job there cannot ...
0
votes
1answer
49 views
Ignoring soft foreign keys when referenced row no longer exists
I’m presently working with a NHibernate application that contains table A that once had a foreign key reference to another related table B. This constraint has since been purposely removed as items in ...
1
vote
1answer
304 views
JPA - Delete foreign key when set to NULL
Suppose in a table 'Foo' I have a foreign key 'barId' to some table 'Bar'. What I want to do is update an existing entry in 'Foo' by setting barId=null, and automatically delete the previously ...
0
votes
1answer
168 views
Hibernate and mysql error : Cannot add or update a child row
i have a hibernate error wich sais :
15:32:48,554 DEBUG SQL:111 - insert into apurement.user (groupe_id, username, password, email) values (?, ?, ?, ?)
15:32:48,664 WARN ...
0
votes
2answers
1k views
hibernate one-to-one (on foreign key) vs one-to-one (on primary key)
i have questions about what is the benefits of using a one-to-one association on foreign key or a one-to-one association on primary key, I've read the documentation of hibernate available at : ...
0
votes
0answers
160 views
Hibernate not setting ManyToOne and not deleting before inserting
I have a basic @OneToMany mapping. For simplicitty, I have omitted getters/setters
class Foo {
@OneToMany(mappedBy = "foo", cascade = CascadeType.ALL, fetch = FetchType.EAGER)
private ...
0
votes
3answers
158 views
Storing entities with a OneToOne mapping with Hibernate
I have the following two entities:
Person.java:
@Entity
@Table(name="PERSON")
public class Person {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="id")
private ...
1
vote
1answer
284 views
How can I tell Hibernate to delete a table row through the entity it's foreign key points to?
I have three tables in my database; an Author table, which has an id column, a Publisher table, which has an id column, and a Book table, which has an id column, an authorId foreign key column, to the ...
1
vote
0answers
77 views
MultiKey FK fails in the child insert with Hibernate
I got the following code, the problem is that the child Mmt, doesn't get fill up the FK with the mmt.setMapMovAnomes(miMapMovAnomes) If I check in debug, the object mmt, have data into the parent ...
2
votes
1answer
171 views
Oracle composite key deletion very slow
I have one table with a composite key (REGION) and another table (CITY) that references that table. Inserts, queries, and individual deletions work quickly. The problem is that when I try to ...
0
votes
5answers
380 views
Hibernate query one-to-one relationship
I am new to hibernate I created the tables and mappings and I am listing all the rows in my table using the following code.
List places = session.createQuery("FROM Place").list();
for (Iterator ...
0
votes
1answer
103 views
How to map these tables on Hibernate
I have these two tables:
CREATE TABLE IF NOT EXISTS `functions` (
`idFunction` int(11) NOT NULL,
`idLanguage` int(11) NOT NULL,
`name` varchar(30) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
...
2
votes
2answers
2k views
No cascade insert for child with foreign key on parent
I have checked many posts on the internet and none address my problem. Really appreciate if anyone can help!
I have OneToMany parent child relationship. Hibernate does not cascade insert child ...
0
votes
2answers
121 views
Specifying a foreign key in JPA
I currently have a table which looks like this:
Users
username
address
dob
...
And
Roles
username
role
I want to make a foreign key constraint between Role.username and User.username. How should ...
0
votes
2answers
125 views
Should I map cascade operations in hibernate when it's fully mapped in SGBD?
I've defined all foreign keys and cascade operations in MySQL, should I also map then in hibernate objects or leave MySQL do it's things alone?
0
votes
2answers
891 views
Oracle : Autopopulate foreign key if parent table referenced column has values
This could be dumb question but somehow I am not able to get around it.
I have the tables status and logs, both tables have jobId column. jobId is generated based on sequence and so I want to add ...
4
votes
1answer
377 views
Hibernate 3.6: how to make use of deferred FK constraints when inserting entities with circular reference?
Consider the following Hibernate 3.6 entity mapping with a circular reference in entities A and B:
@MappedSuperclass
abstract class Entity {
@Id
protected UUID id = UUID.randomUUID();
...
0
votes
0answers
171 views
Hibernate junction table POJO foreign keys inside objects
For example, i have 3 tables:
Man:
int pk_id
Junction:
int fk_m_id,
int fk_w_id,
String some_info
Object Man,
Object Woman
Woman:
int pk_id
The junction table has Man and Woman's foreign keys as ...
0
votes
0answers
206 views
Update struts 2 autocompleter from another autocompleter
I'm using struts+spring+hibernate.
On my .jsp page, I have two autocompleter drop down menus. Each one returns a list of VOs from their specific table in the database, which is then used to call a ...
0
votes
1answer
101 views
Foreign key length JPA
@ManyToOne(fetch = FetchType.LAZY, cascade=CascadeType.PERSIST)
@JoinColumn(name="PRIVATE_CODE_ID", nullable = false)
public PrivateCode getPrivateCode() {
return privateCode;
}
I am working ...
1
vote
2answers
184 views
Hibernate, Spring and foreign keys
I'm working on a hibernate, spring project to help me understand the basics of those two.
I'm running into a problem where i want to be able to add foreign keys to my tables.
I've been browsing the ...
0
votes
2answers
525 views
hibernate StatelessSession update with many-to-one not working (transient instance)?
When I retrieve a Entity (row) with an intentionally unfetched many-to-one association and then try to update that Entity I get the famous transient instance error:
Error updating Object
object ...
2
votes
2answers
2k views
Using PostgreSQL, why doesn't Hibernate/JPA create cascade constraints?
I have an entity Bar:
@OneToMany(cascade = CascadeType.ALL, mappedBy = "bar")
private Set<Foo> fooSet;
And an entity Foo:
@ManyToOne(optional = false)
@JoinColumn(name = "bar_id")
private ...
0
votes
3answers
394 views
Setting/Getting foreign key in Hibernate & Java
Pretty sure this is trivial but unable to find a straight forward answer. I have Dept/Emp tables. Where dept_id in the emp table is a foreign key. It is a classical one-to-many relationship. In a web ...
0
votes
2answers
2k views
Null foreign key, in ManyToOne relation using hibernate [4.1.1] annotations
I am trying to persist a one-to-many and a many-to-one relation using Hibernate 4.1.1 but the foreign key is always NULL.
There are two entities: Account and Client. A Client could have multiple ...
1
vote
1answer
1k views
Hibernate: Check foreign key constraint violation before delete?
The system I'm currently working on has a policy in which objects that have no relationships can be freely deleted, while those that do must be logically deleted. This is meant to prevent historical ...
0
votes
1answer
461 views
Hibernate code generation foreign keys reference objects
I am using Hibernate reverse eng...
I have a table User.
I have table Recipe with Recipe_FK - to User.userId.
When I run the code generation I get a POJO file for the user with:
private Set<?> ...
0
votes
1answer
394 views
Multiple foreign key mapping
I am trying to learn Hibernate and i can't solve a design problem.
I have Head and Group Classes. I have generated two tables listed below using hibernate.
Table-Head
id, int4, primary key
name, ...
0
votes
1answer
144 views
how can I persist this complex object to database using hibernate?
There are database tables in mysql at the backend corresponding to these classes with Foreign Keys defined accordingly. Let me know if I need to put those relations here.
class Itinerary {
Airport ...
1
vote
2answers
572 views
How do I add key constrains in hibernate?
I have the following *.hbm.xml file:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
...
0
votes
1answer
303 views
Hibernate with complex relationships and foreign keys makes loading/saving HELL
I'm quite new in Hibernate, and I'm hurting a problem giving me huge headaches :
I have a database using relationships with foreign keys. I created first my database with all the links represented ...
0
votes
1answer
933 views
Hibernate how to use a constant as part of composite foreign reference
I have a master table A with a composite primary key, consisting of two columns. One of these columns is a constant ("THE CONSTANT VALUE" in the code below). This table definition looks like the ...


