Tagged Questions
8
votes
3answers
663 views
mapping multiple sets in one table in hibernate
I've got a User an a Log class (which I cannot change):
class User {
private long id;
private String name;
private Set<Log> accessLogs;
private Set<Log> actionLogs;
}
...
5
votes
1answer
174 views
How to properly implement a owner-owned-owner2 association in java with hibernate?
I have looked for information on how to implement the following association in hibernate and although the hibernate manual is very thorough, I haven't found the following use case addressed.
I have a ...
5
votes
2answers
152 views
Hibernate Many-to-many association: left hand side collection contains elements, but right hand side collection is empty
I got a problem with a many to many association in my persistence layer. My scenario is the following:
A user can has several roles and a role can have several user attached to it. During the tests I ...
5
votes
2answers
180 views
Mapping POJO to Entities
In our project we have a constraint of not having the luxury to alter the table structure already in place. The tables are highly denormalized in nature.
We have come up with good POJOs for the ...
4
votes
1answer
129 views
Hibernate query on superclass property
First of all, please forgive my ignorance in both Java and Hibernate, I'm studying different ORM solutions and am not a Java programmer.
1) Is it possible to map the following class hierarchy to a ...
4
votes
1answer
309 views
Mapping a Map<String, Double> with Hibernate and JPA
I try the following mapping
@ElementCollection
private Map<String, Double> doubleValues;
But when I generate my schema from this (using mvn hibernate3:hbm2ddl), I get the following errors:
...
4
votes
1answer
471 views
Hibernate 3.5 or 3.6 with no supporting to @Any annotation?
I'm currently working on a system migration (from hibernate 3.2.2.GA with JPA1 to hibernate 3.6 with JPA2. The migration itself is very simple, there are no major updates to do (in fact, I don't think ...
4
votes
3answers
1k views
What is the use of bag tag in Hibernate?
i need to know how to use the bag tag and what is the purpose?
3
votes
3answers
76 views
Hibernate mapping: OneToMany and OneToOne on child object property
Here is parent class Enterprise. It has employers and one of them is president of enterprise.
@Entity
class Enterprise
{
// fields
@OneToMany
public List<Employee> getEmployers()
...
3
votes
2answers
166 views
Hibernate Mapping same Column twice
How can fix this thing
Repeated column in mapping for entity: com.abc.domain.PersonConnect
column: PERSON_ID (should be mapped with insert="false"
update="false")
this is snippet from my hbm ...
3
votes
3answers
139 views
Hibernate Mapping Optional Value
I have two classes which need to be XML mapped (eventually they will all be modified to Annotations, but currently we need to support the XML mappings).
I have a User object which currently looks ...
3
votes
2answers
118 views
How to add property counted in DB to @Entity class?
I have an Entity. And sometimes I need this object also contains some value, call it 'depth'. The query may look like 'select b.id, b.name, b..., count(c.id) as depth from Entity b, CEntity c where ...
3
votes
3answers
246 views
How to use @MapKey annotation with 2 levels?
this question is similar to this other question I've asked, but slightly different.
I have this:
class A{
private List<B> bs;
...
}
class B{
private Long id;
private C c;
...
}
...
3
votes
1answer
254 views
Hibernate - derived java classes for tables
I generated mapping files and POJOs in Netbeans instead of writing them myself. Is it possible to use a derived class in a place of an inherited class? An example would be something like this:
...
3
votes
3answers
2k views
Proper Hibernate id generator for postgres serial/bigserial column?
My PostgreSQL tables have id's of type bigserial, meaning they are generated at the time rows are inserted (and thus, the id column's value is not supplied in the INSERT statement). I'm having ...
3
votes
1answer
721 views
Mapping Hashmap of Coordinates in Hibernate with Annotation
I've just started using hibernate and I'm trying to map walking distance between two coordinates into a hashmap, There can be many connections from one "FromCoordinate" to another "ToCoordinate". I'm ...
3
votes
5answers
1k views
Hibernate: Mapping User-Friends relation in Social Networks
It's quite some time that I'm trying to figure out this problem and from googling around many people have similar problems.
I'm trying to model a User in a Social Network, using Hibernate, and what ...
2
votes
2answers
69 views
Code coverage going down significantly after hibernate upgrade - getters and setters not covered - any ideas?
We have recently upgraded our code base from a 2005 version to the latest version of hibernate.
As a result of that, we're seeing significantly reduced code coverage in a number of our packages. ...
2
votes
1answer
175 views
Missing properties in Envers auditing tables
I am using envers to audit my ParameterToValue entity. Its properties "containerId", "containerType", "parameterId" which do appear as columns in a mapped DB table "values_for_params" (a regular ...
2
votes
1answer
119 views
Upgrade of Hibernate from version 3.0 to 3.6
I'm working on a project which uses Hibernate 3.0(released in 2005), though the project itself is only 4 months old. The catch is we have already written millions of lines of code. We realized we are ...
2
votes
1answer
329 views
Mapping of Custom data type to Java object in Hibernate
I have created a custom data type in the database.This custom datatype has 5 different properties from different tables and I have database function which returns this custom data type.
Could someone ...
2
votes
2answers
779 views
Hibernate one-to-many + lazy loading
I have an Account entity and an AccountTransaction entity.
Account 1 <----> n AccountTransaction
In my AccountTransaction.hbm.xml I specify a many-to-one relationship:
<hibernate-mapping>
...
2
votes
1answer
1k views
How do I join on two columns in the hibernate mapping file using the <join> tag?
I need to map a single class to two tables (both with multiple columns primary key). Let's say TABLE1 has id1,id2,id3 and TABLE2 has id1,id2 as primary keys. Now when writing the mapping file I would ...
2
votes
3answers
476 views
hibernate map<key, set<value>>
I have the following tables:
@Entity
@Table(name = "events")
Event
--id
--name
@Entity
@Table(name = "state")
State
--id
--name
@Entity
@Table(name = "action")
Action
...
2
votes
1answer
801 views
Hibernate One To Many Unidirectional Mapping List
I have one-to-many relationship between parent and child Java objects. The parent object uses java.util.List that stores multiple child objects. The problem I am experiencing is when updating the ...
2
votes
1answer
175 views
Hibernate mapping to manage bidirectional relationship using intermediate table
I have an object hierarchy that is as follows.
Party > inherited by > Organization and Person
Organization > inherited by > Customer, Vendor
Person > inherited by > Contact
In the database I have ...
2
votes
2answers
239 views
Spring-hibernate mapping problem
I have a spring-hibernate application which is failing to map an object properly: basically I have 2 domain objects, a Post and a User. The semantics are that every Post has 1 corresponding User.
...
2
votes
2answers
154 views
get the size of a list in a property
I have a class A which have a list of B elements.
In my A class i would like to add:
int size;
which will be valued with the number of B elements. So when I would call myA.getSize() I will have ...
2
votes
4answers
365 views
Is it possible to have foreign key enforced without object-to-object mapping?
Assuming the following mappings are provided:
<class name="A" table="a_table">
<id name="id"/>
<many-to-one name="entityB" column="fk_B" not-null="false" unique="true"/>
...
2
votes
2answers
338 views
How to map many-to-many association to a class mapped to two different tables?
I have a Voucher - POJO mapped to two tables. The first mapping assigns an entity name "voucherA" and maps the POJO to TableA. The second mapping uses "voucherB" as entity name and maps the POJO to ...
1
vote
1answer
35 views
Many to many relationship in hibernate deleting the join table data?
i have many to many relationship in hibernate.
DB tables are:
events(event_id,name)
speaker(speaker_id,name)
event_speaker(event_id,speaker_id)
event.hbm.xml
<set name="speakers" ...
1
vote
0answers
53 views
Duplicate entries in join table. Using Hibernate, Spring
I have 3 Tables :
Entity
CREATE TABLE `entity` (
`entity_number` bigint(20) NOT NULL AUTO_INCREMENT,
`title` varchar(6) DEFAULT NULL,
`name` varchar(45) NOT NULL,
`surname` varchar(45) NOT ...
1
vote
0answers
25 views
Retrieve Node attribute value from hibernate-mapping
Suppose I have a entity class definition in hbm mapping file as below
<class entity-name="user" node="User" table="dbo.user">
Is there any way to use ClassMetadata or AbstractEntityPersister ...
1
vote
1answer
54 views
Multiple Second Level Cache Settings With One Hibernate Mapping
Supose that there multiple Java applications which share a common entity module (Entity classes + Hibernate XML mappings). Currently, the entities are not enabled for caching (no <cache.../> ...
1
vote
1answer
27 views
Error with function `right` in select statement in hbm file
i get an error with the following statement in a hibernate hbm file:
...
<subselect>
<![CDATA[
select t.colA, right(t.colB, 12) b
]]>
</subselect>
...
The error is ...
1
vote
0answers
57 views
Error in reverse engineering from mysql to reveng.xml
I am trying to reverse engineer from my myql db to create the hibernate pojo classes and xml files. I a following this tutorial.
I have a table called Headoffice and another called restaurants. Its ...
1
vote
0answers
24 views
Hibernate include Stored proc in schema export
I've created a stored procedure in my MySQL database and I want a way to have hibernate include the proc when I run org.hibernate.tool.hbm2ddl.SchemaExport to dump my hibernate configuration into a ...
1
vote
1answer
90 views
Hibernate reverse engineering - mapping a table to Java enum
I'm working on a project where I am using JBoss Tools to reverse engineer an MS SqlServer database into Hibernate objects. I am wondering if there is a way to map some of the tables in my schema to ...
1
vote
1answer
77 views
Mapping a UserType column of oracle in Hibernate
I have a user defined datatype that can contain a list of numbers. How can I map it in Hibernate.
While using the reverse engineer feature of hibernate, I get a Serializable datatype corresponding to ...
1
vote
3answers
123 views
hibernate: how to map a Set association so that HQL order by is preserved
OK, this looks mostly like (another) bug/unimplemented functionality in Hibernate.
Is it possible to map a Set association in such a way that the "order by" clause in HQL is respected?
For example, ...
1
vote
2answers
118 views
Collection being eagerly loaded, even though lazy = true?
I am running through a problem regarding Hibernate lazy loading. I posted this on Hibernate Forum but received no answer, so I thought that perhaps you guys here on stackoverflow could give me a hand. ...
1
vote
0answers
81 views
hibernate generation for dynamic map
I am trying to generate hbm.xml files to support the dynamic map mode of Hibernate. When I run hbm2hbmxml my classes are generated with the name attribute instead of the entity-name attribute. When I ...
1
vote
1answer
208 views
Map a composite key inside a composite key hibernate xml
This is what I would like to do, map an object to another table that has the same primary keys. The below is an example, basically I have one object with a composite key that has a composite key for ...
1
vote
2answers
272 views
table is not mapped?
now to my understanding to map a table in db we add:
@Entity()
@Table(name = "test")
public class Test implements Serializable {
/** Constant - serial version UID. */
public final static long ...
1
vote
2answers
334 views
Hibernate oracle integrity constraint violated
I got a problem mapping oracle by hibernate
I got these classes
Stock.java
package com.mc.stock;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.Basic;
...
1
vote
1answer
59 views
Hibernate Mapping issue
I've 3 tables: A, B and C. A holds a one-to- many relation with B and B holds a one-to-one relation with C. When I do a session.save(objA), a row will be created in A, many rows will be created in B ...
1
vote
1answer
32 views
Hibernate Master-SubDetails Mapping
I'd like to explore hibernate and used it in my project instead of JDBC.
My table design is higly normalized.
Suppose, I have this use case:
Each insurance applied by a customer has one associated ...
1
vote
0answers
38 views
many-to-many: 'parent' is deleted when there is still another 'child'
I have a many-to-many relationship where two records on one side have the same parent (the owner of the relationship) on the other side. When I delete one of the two records the parent and jointable ...
1
vote
2answers
139 views
Hibernate column used as a part of a composite primary key and a part composite foreign key at the same time
I got this table structure where we are not allowed to change and i have problems finding an Hibernate mapping solution.
Table A
a1 (pk)
a2
Table B
b1 (pk, fk on 'A.a1')
b2 (pk)
b3
Table C
...
1
vote
2answers
131 views
Store List in hibernate as Serializable object
Normally we store a List in database by the hibernate mapping:
<list name="userItems" cascade="all" lazy="false">
<key column="user_date_id"/>
<index column="idx"/>
...