Tagged Questions
8
votes
3answers
718 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
180 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
186 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
190 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
3k 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 = {
...
4
votes
1answer
136 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
2answers
345 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
498 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
3k 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 ...
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?
4
votes
2answers
1k 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 ...
3
votes
1answer
90 views
ColdFusion 9 ORM “LEFT JOIN” in Join Mapping
It's been a while since I last used the Hibernate implementation in CF9 and right now I'm at a point where I can't see the woods for all the trees (probably not enough coffee).
I've simplified the ...
3
votes
3answers
86 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
206 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
150 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
437 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
122 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
1answer
533 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 ...
3
votes
3answers
251 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
259 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
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?
3
votes
1answer
731 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
2answers
1k 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
853 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
7k 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:
...
3
votes
5answers
2k 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
39 views
How to fetch only desired property of bean in hibernate?
I am using Hibernate 3.5.6 for my application.In this application I am using hbm.xml files to map my POJO to database table columns.
In this application I have User bean as below.
public class User ...
2
votes
2answers
70 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
4answers
436 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 ...
2
votes
2answers
76 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
312 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 ...
2
votes
1answer
221 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
64 views
Hibernate persistence by reachability & detached objects
I'm curious to know how Hibernate would handle the following situation.
Let's say we have a User entity, which has a country property, set to cascade the persistence:
public class User {
...
2
votes
1answer
150 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
0answers
115 views
Hibernate subclass to override a column
We have an Entity library untouched by our web stack, but our web stack would like to extend existing columns on existing entities with validation constraints. Here's one example of the "goal":
...
2
votes
1answer
87 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 ...
2
votes
1answer
221 views
Enable Hibernate Startup log
In book "Java Persistence with Hibernate" I came across a line that says:
Hibernate produces all trivial CRUD SQL at startup. It caches the SQL statements
internally for future use, thus avoiding any ...
2
votes
1answer
164 views
Hibernate UserType problem
I am trying my hands on Hibernate's userType and struck in some problem.here is my mapping file
<hibernate-mapping>
<class name="MyClass"
table="MYTABLE">
<id ...
2
votes
0answers
274 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: ...
2
votes
1answer
197 views
Hibernate Filter Programmatically
How to programmatically achieve the same result (as the following annotation would achieve)? Or injecting the value 'SMITH' in a spring configuration file?
@Filter(name="smithFilter", ...
2
votes
2answers
869 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
0answers
224 views
Hibernate fetch MAP optimization (minimize SELECT statements)
How to fetch a map with no additional select statements.
I have a hbm like this:
<map name="officeSet" table="office_employee" inverse="true" lazy="false" batch-size="100" ...
2
votes
1answer
110 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 ...
2
votes
1answer
584 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
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
2answers
377 views
Legacy database structure Hibernate mapping issue
I am having trouble mapping the following database structure (shortened for brevity with just PKs/FKs and a few extra columns:
Policy
Policy_Id (PK)
...
Risk
Risk_Id (PK)
...
Party
Party_Id (PK)
...
2
votes
3answers
516 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
871 views
HibernateToolTask (hbm2hbmxml) doesn't generate index in hibernate-mapping from @org.hibernate.annotations.Index annotations
I am trying to generate hibernate-mapping from POJOs with hibernate annotations.
Then I want to use liquibase to generate database schema.
So I need indexes to be defined in my POJOs.
Sample POJO:
...
2
votes
1answer
183 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
4answers
314 views
how to remove the mapping resource property from hibernate.cfg file
i am currently working on one project. In my project there are many entity/POJO files. currently i am using simple hibernate.cfg.xml to add all the mapping files in to the configuration like :-
...