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.
10
votes
1answer
8k 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 = {
...
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;
}
...
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 ...
7
votes
4answers
15k views
Hibernate - A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance
I'm having the following issue when trying to update my entity " A collection with cascade=”all-delete-orphan” was no longer referenced by the owning entity instance".
I have a parent entity and it ...
7
votes
1answer
23k views
How can I map “insert='false' update='false'” on a composite-id key-property which is also used in a one-to-many FK?
I am working on a legacy code base with an existing DB schema. The existing code uses SQL and PL/SQL to execute queries on the DB. We have been tasked with making a small part of the project ...
7
votes
3answers
7k 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 ...
7
votes
2answers
144 views
Do we need Hibernate mapping In this scenario?
I am new to hibernate. Please help me.
I have 2 tables named Employee and Country.I need to save the Employee with selected country.In my case , I will nowhere get employee details back and show it ...
6
votes
1answer
902 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 ...
6
votes
3answers
5k 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?
6
votes
2answers
256 views
Hibernate insert query
During insertion in hibernate query i'm passing some fields as table class objects which i've mapped to corresponding tables, The query works fine but the query is becoming too large because each of ...
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" ...
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 ...
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 ...
5
votes
1answer
222 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
431 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 ...
5
votes
1answer
1k views
Mapping a localized string in Hibernate - any best practice?
I'm writing an application where all String properties must be localized, i.e. they must store a different value for every available Locale.
A quick solution would be to use a Map, which can be easily ...
5
votes
2answers
272 views
Strange Hibernate exception with column type
I am getting Hibernate exception:
Wrong column type. Found: bit, expected: BOOLEAN DEFAULT TRUE
I have class User:
package mypackage;
import javax.persistence.*;
import java.util.ArrayList;
...
4
votes
2answers
13k views
Hibernate: unmapped class association exception
I know this should be a pretty elementary issue to fix, but 1) I'm relatively new to Hibernate, and 2) the fixes I've found don't (seem to) apply here.
Here is the exception I am getting:
...
4
votes
2answers
3k views
Maven + Hibernate annotations schema generation
I have a bunch of classes annotated with hibernate annotations. I'm using Maven, Hibernate and Spring. How can I generated the DB schema using hibernate3-maven-plugin's hbm2ddl?
4
votes
1answer
123 views
Length of primary key for Long data type in Java (and Hibernate)?
log(2^32) / log(10) =~ 9.63295986126
log(10^0.63295986126) / log(2) =~ 2.10264714605 > 2 bit
log(2^64) / log(10) =~ 19.2659197225
log(10^0.2659197225) / log(2) =~ 0.883366197155 < 2 bit
As ...
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 ...
4
votes
1answer
3k views
How can I prevent Hibernate from updating NULL values
Is there a setting in hibernate to ignore null values of properties when saving a hibernate object?
NOTE
In my case I am de-serializing JSON to a Hibernate Pojo via Jackson.
The JSON only contains ...
4
votes
1answer
1k 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 ...
4
votes
1answer
348 views
Is there a way to have a Hibernate mapping to a column that may or may not exist?
I have a situation where a column on a table may or may not exist. Long story short, we have an optional feature that, if implemented, will tack on a column to a table. If a client chooses not to have ...
4
votes
1answer
82 views
How to enforce a validation constraint on an Embeddable entity property?
I have a Person entity with an Email collection property:
@ElementCollection
@CollectionTable(schema="u",name="emails",joinColumns=@JoinColumn(name="person_fk"))
@AttributeOverrides({
...
4
votes
1answer
376 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();
...
4
votes
1answer
358 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
515 views
Hibernate mapping resource locate in the separate jar
I have separate jar file has contain hibernate entity mapping and mapping directly. My Hibernate confg (cgf.xml) placed in another jar file. And as result I catch exception "resource: ...
4
votes
2answers
907 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:
...
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, ...
3
votes
3answers
6k views
how to return Map<Key, Value> with HQL
i have a table
Permission:
id
name
desc
what i am doing right now
is to make a query that returns a permission object then put the values in the map programmatically
1- But i was wondering if ...
3
votes
1answer
491 views
Hibernate - How to disable mapping for a column
When tagged as @Entity, each attribute of a class is mapped to one database column.
I have some classes where I want to add some fields for internal usage, but I don't want them to be mapped by ...
3
votes
3answers
632 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
4k views
Hibernate configuration with mysql gives ERROR - SAXParseException
I'm trying to configure hibernate with mysql.
Following is the hibernate.cfg.xml:
<hibernate-configuration>
<session-factory>
<property ...
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 ...
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
3answers
345 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
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. ...
3
votes
1answer
733 views
How to best map results from an SQL query to a non-entity Java object using Hibernate?
I have a Hibernate managed Java entity called X and a native SQL function (myfunc) that I call from a Hibernate SQL query along these lines:
SQLQuery q = hibernateSession.createSQLQuery(
...
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
3answers
1k views
Hibernate - Avoiding unnecessary join when using foreign key in where clause
Hi
I try to optimize the database queries in Hibernate, but I found a blocker:
<class name="SupportedLanguageVO" table="AR_SUPPORTED_LANG" >
<cache usage="read-only"/>
<id ...
3
votes
2answers
1k 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
1answer
556 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 ...
3
votes
1answer
534 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
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 ...
3
votes
1answer
134 views
Coldfusion 10 ORM “Error while resolving the relationship”
I've had an ORM application working for two years now local on my laptop for dev purposes and the ORM mappings have been working very well. The app was originally created in CF9 but my local CF was ...
3
votes
1answer
284 views
Hibernate update query with innerjoin
I have the following MySQL update query with inner join:
UPDATE Country AS c
INNER JOIN State s ON c.CountryID = s.CountryID
INNER JOIN City cy On s.StateID = cy.StateID
SET c.Active='Y', ...
3
votes
3answers
745 views
Hibernate does not delete orphans on OneToMany
I have the following pretty simple one to many relations:
Team has a Set of players:
@Entity(name = "TEAM")
@Access(AccessType.PROPERTY)
public class Team{
private Integer id;
private String ...
3
votes
3answers
504 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
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 ...