Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping.
173
votes
6answers
180k views
Hibernate hbm2ddl.auto possible values and what they do?
I really want to know more about the update, export and the values that could be given to hbm2ddl.auto.
I need to know when to use the update and when not? And what is the alternative?
These are ...
237
votes
2answers
30k views
What's the Hi/Lo algorithm?
What's the Hi/Lo algorithm?
I've found this in the NHibernate documentation (it's one method to generate unique keys, section 5.1.4.2), but I haven't found any good explanation of how does it work.
...
4
votes
1answer
10k views
Hibernate: different object with the same identifier value was already associated with the session [duplicate]
Possible Duplicate:
Hibernate Error: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session
when I use the ...
83
votes
5answers
55k views
Hibernate show real SQL [duplicate]
if I set
<property name="show_sql">true</property>
in my hibernate.cfg.xml configuration file in the console I can see the SQL.
But it's not real SQL... Can I see the SQL code that ...
106
votes
14answers
50k views
Hibernate: hbm2ddl.auto=update in production?
Is it okay to run Hibernate applications configured with hbm2ddl.auto=update to update the database schema in a production environment?
46
votes
8answers
21k views
Why is hibernate open session in view considered a bad practice?
And what kind of alternative strategies do you use for avoiding LazyLoadExceptions?
I do understand that open session in view has issues with:
Layered applications running in different jvm's
...
41
votes
7answers
24k views
Print query string in hibernate with parameter values
Is it possible in hibernate to print generated sql queries with real values instead of question marks?
How would you suggest to print queries with real values if its not possible with hibernate api?
55
votes
7answers
69k views
How do synchronized static methods work in Java?
If I have a util class with static methods that will call hibernate functions to accomplish basic data access. I am wondering if making the method synchronized is the right approach to ensure ...
48
votes
5answers
55k views
Hibernate: Difference between session.get and session.load
From the API, I could see it has something to do with proxy. But I couldn't find a lot of information on proxy and do not understand the difference between calling session.get and session.load. Could ...
60
votes
8answers
53k views
How do you do a limit query in HQL
In Hibernate 3, is there a way to do the equivalent of the following MySql limit in HQL.
select * from a_table order by a_table_column desc limit 0, 20;
I don't want to use setMaxResults if ...
38
votes
1answer
44k views
Spring Security 3 database authentication with Hibernate
I need to authenticate users from database, Spring Security documents don't tell how to authenticate with hibernate. Is that possible and how can I do that?
39
votes
10answers
77k views
What is lazy loading in Hibernate?
What is lazy loading in Java? I don't understand the process. Can anybody help me to understand the process of lazy loading?
56
votes
8answers
69k views
JPA CascadeType.ALL does not delete orphans
I am having trouble deleting orphan nodes using JPA with the following mapping
@OneToMany (cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "owner")
private List<Bikes> bikes;
I ...
116
votes
14answers
63k views
Hibernate: Criteria vs. HQL
What are the pros and cons of using Criteria or HQL? The Criteria API is a nice object-oriented way to express queries in Hibernate, but sometimes Criteria Queries are more difficult to ...
30
votes
11answers
37k views
Hibernate JPA Sequence (non-Id)
Is it possible to use a DB sequence for some column that is not the identifier/is not part of a composite identifier?
I'm using hibernate as jpa provider, and I have a table that has some columns ...
47
votes
3answers
14k views
Converting Hibernate proxy to real object
During Hibernate session I am loading some objects and some of them are loaded as proxies due to lazy loading. It's all OK and I don't want to turn lazy loading off.
But later I need to send some of ...
44
votes
6answers
13k views
Making a OneToOne-relation lazy
In this application we are developing, we noticed that a view was particularly slow. I profiled the view and noticed that there was one query executed by hibernate which took 10 seconds even if there ...
54
votes
12answers
44k views
What is the proper way to re-attach detached objects in Hibernate?
I have a situation in which I need to re-attach detached objects to a hibernate session, although an object of the same identity MAY already exist in the session, which will cause errors.
Right now, ...
34
votes
8answers
30k views
JPA/Hibernate store date in UTC time zone
How can I configure JPA/Hibernate to store a date/time in the database as UTC (GMT) time zone? Consider this annotated JPA entity:
public class Event {
@Id
public int id;
...
24
votes
17answers
30k views
Hibernate Annotations - Which is better, field or property access?
This question is somewhat related to http://stackoverflow.com/questions/305880/hibernate-annotation-placement-question.
But I want to know which is better? Access via properties or access via fields?
...
38
votes
5answers
63k views
How do you create a Distinct query in HQL
Is there a way to create a Distinct query in HQL. Either by using the "distinct" keyword or some other method. I am not sure if distinct is a valid keywork for HQL, but I am looking for the HQL ...
19
votes
15answers
48k views
Hibernate Error: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session
I have two user Objects and while I try to save the object using
sessio.save(userObj)
I am getting the following error :
Caused by: org.hibernate.NonUniqueObjectException: a different object with ...
8
votes
1answer
20k views
Spring + Hibernate : a different object with the same identifier value was already associated with the session
Greeting ,
In my non-web application(using Spring,Hibernate), I parse a CSV file and populate db using following method.
handleRow() is called everytime a new raw is read from CSV file.
My domain ...
3
votes
2answers
5k views
Mapping ManyToMany with composite Primary key and Annotation:
I'm trying to create manytomany realation between Student and Teaching Course using Composite Primary key:
my classes:
@Entity
@Table(name="Student_mtm_cId")
public class Student {
private ...
51
votes
12answers
17k views
Hibernate, iBatis, Java EE or other Java ORM tool
We're in the process of planning a large, enterprise application. We're focusing our efforts on evaluating hibernate after experiencing the pains of J2EE.
It looks like the new Java EE API is ...
40
votes
11answers
19k views
How to avoid type safety warnings with Hibernate HQL results?
For example I have such query:
Query q = sess.createQuery("from Cat cat");
List cats = q.list();
If I try to make something like this it will show warning "Type safety: The expression of type List ...
22
votes
3answers
4k views
I found JPA, or alike, don't encourage DAO pattern
I found JPA, or alike, don't encourage DAO pattern. I don't know, but I feel like that, especially with server managed JTA managers.
After adequate hands-on using DAO pattern, I started designing JPA ...
26
votes
7answers
40k views
JPA Hibernate One-to-One relationship
I have a one-to-one relationship but hibernatetool complains when generating the schema. Here's an example that shows the problem:
@Entity
public class Person {
@Id
public int id;
...
33
votes
12answers
103k views
hibernate: LazyInitializationException: could not initialize proxy
Here's one that has me perplexed. I'm trying to implement a basic Hibernate DAO structure, but am having a problem.
Here's the essential code:
int startingCount = sfdao.count();
sfdao.create( sf ...
27
votes
4answers
10k views
equals and hashcode in Hibernate
How should model class's equals and hashcode be implemented in Hibernate? What are the common pitfalls? Is the default implementation good enough for most cases? Is there any sense to use business ...
33
votes
3answers
17k views
proper hibernate annotation for byte[]
I have an application using hibernate 3.1 and JPA annotations. It has a few objects with byte[] attributes (1k - 200k in size). It uses the JPA @Lob annotation, and hibernate 3.1 can read these just ...
24
votes
6answers
34k views
Do I need <class> elements in persistence.xml?
I have very simple persistance.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0"
xmlns="http://java.sun.com/xml/ns/persistence" ...
10
votes
5answers
7k views
similarity and difference between jpa and hibernate
what is similarity and difference between jpa and hibernate.
66
votes
9answers
11k views
The JPA hashCode() / equals() dilemma
There have been some discussions here about JPA entities and which hashCode()/equals() implementation should be used for JPA entity classes. Most (if not all) of them depend on Hibernate, but I'd ...
68
votes
4answers
35k views
Hibernate cannot simultaneously fetch multiple bags
Hibernate throws this exception during SessionFactory creation:
org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags
This is my test case:
Parent.java
...
20
votes
5answers
22k views
How to get SQL from Hibernate Criteria API (*not* for logging)
is there an easy way to get the (to-be-generated) sql from a Hibernate Criteria?
Ideally I would have something like:
Criteria criteria = session.createCriteria(Operator.class);
... build up the ...
61
votes
6answers
52k views
How do we count rows using Hibernate?
For example, if we have a table Books, how would we count total number of book records with hibernate?
Thanks
12
votes
3answers
8k views
How to mix inheritance strategies with JPA annotations and Hibernate?
According to the Hibernate Reference Documentation it should be possible to mix different inheritance mapping strategies when using Hibernate's XML-Metadata:
...
6
votes
4answers
8k views
Can add extra field(s) to @ManyToMany Hibernate extra table?
I have these two class(table)
@Entity
@Table(name = "course")
public class Course {
@Id
@Column(name = "courseid")
private String courseId;
@Column(name = "coursename")
private ...
6
votes
3answers
14k views
Hibernate ID Generator
Anyone know of some good tutorials on how to create a custom ID generator for hibernate?
10
votes
3answers
11k views
How to use Hibernate @Any-related annotations?
Could someone explain to me how Any-related annotations (@Any, @AnyMetaDef, @AnyMetaDefs and @ManyToAny) work in practice. I have a hard time finding any useful documentation (JavaDoc alone isn't very ...
6
votes
3answers
13k views
JPA 2.0 @OrderColumn annotation in Hibernate 3.5
I'm trynig to use @OrderColumn annotation with Hibernate 3.5
@OneToMany(mappedBy = "parent",fetch=FetchType.EAGER, cascade=CascadeType.ALL)
@OrderColumn(name = "pos")
private List<Children> ...
14
votes
5answers
32k views
Error : java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V
Hiii....
I am developing small spring application. I have to store the details of the student information in the database. I have develop one simpleformcontroller.I have used netbeans + hibernate ...
118
votes
11answers
80k views
Hibernate vs JPA vs JDO - pros and cons of each?
I'm familiar with ORM as a concept, and I've even used nHibernate several years ago for a .NET project; however, I haven't kept up with the topic of ORM in Java and haven't had a chance to use any of ...
49
votes
2answers
25k views
In a bidirectional JPA OneToMany/ManyToOne association, what is meant by “the inverse side of the association”?
In these examples on TopLink JPA Annotation Reference:
Example 1-59 @OneToMany - Customer Class With Generics
@Entity
public class Customer implements Serializable {
...
...
55
votes
18answers
38k views
Light weight alternative to Hibernate? [closed]
I have a single user java program that I would like to have store data in a light weight database such as Derby or Sqlite. I would like to use a data abstraction layer in my program. Hibernate appears ...
31
votes
5answers
74k views
Configuring Hibernate logging using Log4j XML config file?
I haven't been able to find any documentation on how to configure Hibernate's logging using the XML style configuration file for Log4j.
Is this even possible or do I have use a properties style ...
39
votes
5answers
22k views
What are the differences between the different saving methods in Hibernate?
Hibernate has a handful of methods that, one way or another, takes your object and puts it into the database. What are the differences between them, when to use which, and why isn't there just one ...
28
votes
5answers
40k views
Difference between FetchType LAZY and EAGER in Java persistence?
Hi
I am a newbie to Java persistence and Hibernate.
What is the difference between FetchType LAZY and EAGER in Java persistence?
Thanks
21
votes
2answers
18k views
HibernateDaoSupport is not recommended, why?
I've been doing some work with Hibernate 3.5 and Spring 3 recently, I'm fairly new with Hibernate and thought the HibernateDaoSupport class in Spring made it nice and easy to use Hibernate with my ...