Hibernate uses mapping metadata to find out how to load and store objects of the persistent class. The Hibernate mapping could be specified using configuration files or annotations.

learn more… | top users | synonyms

2
votes
5answers
7k views

Hibernate use of PostgreSQL sequence does not affect sequence table

I've configured Hibernate to use PostgreSQL sequence (via annotations) to generate values for primary key id column as follows: @Id ...
3
votes
2answers
1k views

How to adjust constraints / DB mapping for Map within grails domain class

Following grails domain class: class MyClass { Map myMap } Now for myMap, grails automatically creates a new table for the elements in the map. However if I add elements which are too long (e.g. ...
8
votes
2answers
8k views

Can someone please explain mappedBy in hibernate?

I am new to hibernate and need to use 1-Many and Many-1 relation. It is a bi-directional relationship in my objects, so that I can traverse from either direction. mappedBy is the recommended way to go ...
2
votes
2answers
2k views

Postgresql UUID supported by Hibernate?

I'm desperate, can't get Hibernate working with UUID for PostgeSQL. Here is the mapping using javax.persistence.* annotations: private UUID itemUuid; @Column(name="item_uuid",columnDefinition="uuid ...
1
vote
1answer
757 views

mixing joined and single table inheritance and querying for all objects

I have a webapp that is working with the following configuration (I changed the entity names): @Entity @Inheritance(strategy = InheritanceType.JOINED) @Table(name = "animals") public abstract class ...
3
votes
4answers
8k views

Map entity using query in Hibernate

consider table sales (id, seller_id, amount, date) and here is a view that is generated from sales using query SELECT seller_id, SUM(amount) FROM sales GROUP BY seller_id total_sales (seller_id, ...
4
votes
1answer
3k views

Many to Many Hibernate Mapping for additional property in the join table

i need a many to many hibernate mapping needed 3 joins.i try to find out a solution without intermediate entity like LecturerCourse. i have a many to many relation in my database between my lecturer ...
5
votes
4answers
6k views

Adding an enum as a class property in HBM

I am trying to create a class in HBM file which contains an Enum as a field. The HBM is similar to this: <class name="a.b.c.myObject" table="OBJECT" > <property name="myEnum" ...
10
votes
1answer
9k views

How to do multiple column UniqueConstraint in hbm?

Working on some legacy hibernate code. How do I do the following with hbm.xml(hibernate mapping file) instead of with annotations? @Table(name="users", uniqueConstraints = { ...
2
votes
1answer
564 views

How to map many value type collections to one single table in Hibernate?

I am tring to map many value-type sets in hibernate to one table for performance reasons. First I did put them all in their own table which led to too many joins. I have a Categories class that ...
2
votes
4answers
3k views

Embed hibernate hbm.xml mappings in jar

Is it possible to embed the hibernate mapping hbm.xml’s to the jar and avoid manual reference in applicationContext.xml like <bean id="sessionFactory" ...
0
votes
2answers
99 views

UnsupportedOperationException: The application must supply JDBC connections

If I dont set anything programmatically and just call Configuration configuration = new Configuration().configure(); and use the hibernate.properties (as below) everything works just great. As soon as ...
-2
votes
3answers
410 views

Hibernate table not mapped error

I have a web application that use Hibernate to make CRUD operations over a database. I got an error saying that the table is not mapped. See the java files: Error message: ...
9
votes
3answers
2k 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; } ...
3
votes
2answers
2k views

Hibernate map enum to varchar

Suppose I have this enum: public enum TestEnum { EXAMPLE, FURTHER_EXAMPLE, LAST_EXAMPLE } With this mapping in the .hbm: <property name="testEnum" column="TEST_COLUMN"> <type ...
1
vote
1answer
2k views

how to create a composite primary key hibernate JPA?

i try to create composite primary key in table from 2 foreign key using hibernate JPA,but gives me error.I find some solution on net but nothing The relations between tables looks like this: ...
1
vote
2answers
969 views

Hibernate one to many mapping works with a list but not a set?

Sorry to bother - perhaps this is a very simple question - but for some reason the version below fails to get parsed, whereas the version with set works fine. In fact, if I just take the set version ...
0
votes
2answers
3k views

Mapping a property to a field from another table in NHibernate

consider the following class: class Order { int OrderId {get; set;} int CustomerId {get; set;} string CustomerName {get; set;} //other fields go here } which is mapped to Orders ...
5
votes
1answer
2k views

Hibernate 2nd level cache objects that are lazy=false, result in a default fetch=join, is it documented anywhere?

I experience the following apparently undocumented issue, and I want to understand if I did something wrong Did anyone encounter the same issue? Is it really not documented anywhere? or did I miss ...
4
votes
2answers
912 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: ...
1
vote
2answers
341 views

Intercepting NHibernate persistence operations on ICollection's properties (many associations)

I would like to intercept persistence operations over collection properties, decide by myself if it can be synchronized with database, and call a procedure when a persistence is decided to occur over ...
5
votes
2answers
2k 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 ...
3
votes
3answers
2k views

Hibernate annotation or XML configuration

I have started a new project with Hibernate. Is Hibernate annotation a better choice or is Hibernate XML mapping better? I have used Hibernate with XML configuration, but I have no idea about ...
3
votes
1answer
1k views

from hibernate to mysql, default value mapping issue

hibernate xml mapping file does not support default value. So when i try to create a column with default value in mysql, then i run the hibernate save() method without setting the column value. the ...
3
votes
2answers
3k views

Set creation and update time with Hibernate in Xml mappings

I'm using Hibernate with Xml mappings. I have an entity that has two fields creationDate and updateDate of type timestamp, that have to be filled with the current UTC time when the entity is ...
3
votes
2answers
1k views

Mapping a table called “group” in Hibernate for DB2 and HSQLDB

I have a table called group, that I am trying to map using hibernate for DB2 and HSQLDB. Table name group is a reserved word and it must be quoted in HSQLDB. However DB2 does not like quoted table ...
2
votes
3answers
4k views

How do I map a BigDecimal in Hibernate so I get back the same scale I put in?

In Java, new BigDecimal("1.0") != new BigDecimal("1.00") i.e., scale matters. This is apparently not true for Hibernate/SQL Server, however. If I set the scale on a BigDecimal to a particular value, ...
2
votes
1answer
1k views

remove collection with delete-orphan not work with null assignment? :(

I am having problems removing another entity through cascade delete-orphan. It works when I clear the associated set collection, but not when I make the set collection null. Let me explain in detail. ...
2
votes
2answers
5k views

Hibernate auto-increment property

I know you can auto-increment an id by mapping; <id column="user_id" name="id" > <generator class="increment"/> </id> But is it also possible increment a property, what I tried so ...
1
vote
2answers
141 views

Hibernate ordering in sql

Is it possible to sort the Set collection using hibernate, in sql without using SortedSet interface, without using @OrderBy annotation - just using criteria's addOrder. I've tried it and it adds ...
3
votes
3answers
637 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() ...
2
votes
1answer
285 views

Why does Hibernate attempt to load “not-found=ignore” associations?

I've got a class (representing a project) which maps another class (representing a user) through a many-to-one relationship. As users come and go I've made sure to set the not-found property to ignore ...
2
votes
1answer
524 views

Hibernate Mapping One To Many Relationship:Parent's PK to Child's FK

I have a classic one to many relationship and while saving it with Hibernate, I am not able to pass parent's PK column value to Child's FK column. Parent Class @Id ...
2
votes
3answers
6k views

Hibernate throws strange error: Class is not mapped

this is the error org.hibernate.hql.ast.QuerySyntaxException: Payment is not mapped [select p from Payment p] I don't understand how come this error is thrown, the class should be mapped as I will ...
2
votes
2answers
210 views

Specifying field size of Map collection in grails DOM

I have a Grails 1.3.7 domain class that is declared like this: class Document { String url Map metadata = new HashMap() static constraints = { url(nullable:false, blank: false, ...
1
vote
1answer
58 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
318 views

Hibernate Returning two Pojo's and display the results on jsp using jstl

I have my pojo classes Master: public class Master extends RecordSet{ private String empcode; private String empname; private String dept; public String getEmpcode() { return empcode; } public ...
1
vote
1answer
1k views

foreign key must have same number of columns as the reference primary key hibernate - many to many

I have domain Classes - User, Role, Group, Group Role User Domain private long id, private String userName, private String password, Set<Role> roles = new HashSet<Role>(); ...
1
vote
1answer
577 views

Hibernate: Best way to configure 3-way many to many relationship

I am trying to figure out the best way to map a three way @ManyToMany relationship in Hibernate. The following is my data model: As you can see the TeamPosition table is nothing more than 3 ...
1
vote
1answer
2k views

Many to many hibernate mapping with extra columns?

Hi i have many to many mapping with extra columns in the join table. table structure look like this. table vendor{vendor_id, vendor_name, vendor_password, etc...} table student{student_id, ...
1
vote
2answers
1k views

javax.persistence Annotations on field, getter or setter?

I am currently learning Hibernate and the Java Persistence API. I have an @Entity class, and need to apply annotations to the various fields. I have included in the code below all three places where ...
1
vote
2answers
694 views

How to map @OneToMany to a java.util.Map with custom keys?

class A{ private List<B> bs; ... } class B{ private Long id; private String name; ... } And I'd like to have this: class A{ // the map should have B.name as key private ...
1
vote
2answers
119 views

access data from two table

Customer class have name property that corresponds to name field in customer table. Customer class also define the map that use for put the fieldName and fieldValue. on database customer name define ...
0
votes
2answers
119 views

persistencecontext makes queries empty

I recently changed my JPA design for that : persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
0
votes
2answers
212 views

Rather than child is deleting its updating ,when parent is deleted

My problem is when i delete the parent, child is not deleted but instead of deleting child ,child is updating.Parent table is Employee and child table is EmployeeProject there is one-to-many relation ...
0
votes
1answer
471 views

How to Write Hibernate Mapping File For a Stored Procedure

I have a MySQL Stored Procedure which accepts two Input Dates and Returns EmpCode,Name,Department,Employee_Absent_Date and Total_No_OF_Days StoreProcedure(Employee Absent Report for a Two Given Dates ...
0
votes
1answer
98 views

Hibernate OneToOne relationship

I have two persistence entity: User and UserDetail. They have one-to-one relationship. I use hibernate annotations. But I am getting in my database several objects of user information for one same ...
0
votes
1answer
344 views

native sql into an unmapped object

I'm working on modifying an existing application and I've decided to work with these 2 things. My unmapped object is a simple object that consists of 2 integer properties: public class EmployeeScore ...
0
votes
0answers
318 views

hibernate one to one with composite key

Let's say I have 2 classes, with one class containing a composite key based on foreign key: @Entity @Table(...) class A { @Id private int id; @OneToOne private B b; } and: @Entity ...
0
votes
1answer
643 views

Hibernate one to many mapping foreign key issue

I am new to hibernate. Please help me in understanding this. I have Department and Employee objects. Department is having employee collection with cascade type SAVE.I have created department object ...

1 2