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.
242
votes
2answers
31k 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.
...
182
votes
6answers
188k 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 ...
120
votes
11answers
82k 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 ...
118
votes
15answers
64k 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 ...
110
votes
23answers
14k views
Weaknesses of Hibernate
I would like to know which are the weak points of Hibernate 3. This is not pretended to be a thread against Hibernate. I think it will be a very useful knowledge for decide if Hibernate is the best ...
107
votes
14answers
51k 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?
86
votes
5answers
59k 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 ...
77
votes
4answers
38k 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
...
72
votes
13answers
169k views
How to install Hibernate Tools in Eclipse?
What is the proper way to install Hibernate Tools in Eclipse as a plugin?
The Hibernate site doesn't really give any instructions.
Looking at the Hibernate Tools binary ...
68
votes
9answers
12k 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 ...
64
votes
6answers
55k 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
61
votes
8answers
55k 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 ...
59
votes
3answers
55k views
object references an unsaved transient instance - save the transient instance before flushing
I receive following error when i save the object using hibernate
object references an unsaved transient
instance - save the transient instance
before flushing
Can you help me ?
58
votes
5answers
35k views
What's new in Hibernate 4?
I just saw that a beta of Hibernate 4 was released. What's new in 4 compared to 3(.6)? I couldn't find this info in the beta announcement, nor when Googling the title of this question.
57
votes
8answers
71k 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 ...
56
votes
3answers
29k views
Exception NoClassDefFoundError for CacheProvider
I'm kind of new in Spring and hibernate so I'm trying to implement some simple web application based on Spring 3 + hibernate 4
while I start tomcat I have this exception:
...
56
votes
4answers
17k views
apache commons equals/hashcode builder
I'm curious to know, what people here think about using
org.apache.commons.lang.builder EqualsBuilder/HashCodeBuilder
for implementing the equals/hashcode? Would it be a better practice than writing ...
55
votes
18answers
39k 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 ...
55
votes
7answers
71k 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 ...
55
votes
3answers
17k views
When to use inverse=false on NHibernate / Hibernate OneToMany relationships?
I have been trying to get to grips with Hibernate's inverse attribute, and it seems to be just one of those things that is conceptually difficult.
The gist that I get is that when you have a parent ...
54
votes
12answers
46k 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, ...
52
votes
5answers
35k views
Is buildSessionFactory() deprecated in hibernate 4?
When I updated version of Hibernate from 3.6.8.final to 4.0.0.final I got a warning about deprecated method buildSessionFactory() in this line:
private static final SessionFactory sessionFactory =
...
52
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 ...
52
votes
3answers
26k 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 {
...
...
51
votes
9answers
59k views
Creation timestamp and last update timestamp with Hibernate and MySQL
For a certain Hibernate entity we have a requirement to store its creation time and the last time it was updated. How would you design this?
What data types would you use in the database (assuming ...
50
votes
5answers
57k 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 ...
48
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 ...
47
votes
5answers
14k 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 ...
46
votes
3answers
41k views
Enumerations in Hibernate
It is often useful to have a field in a DAO whose value comes from a Java enumeration. A typical example is a login DAO where you usually have a field that characterises the user as "NORMAL" or ...
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
...
44
votes
7answers
8k views
What is the difference between DAO and Repository patterns
What is the difference between the two. I am developing an application using EJB3 and Hibernate as infrastructure and DDD and TDD as design techniques.
44
votes
7answers
26k 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?
43
votes
2answers
14k views
Hibernate SessionFactory vs. EntityManagerFactory
I am new to Hibernate and am unclear of whether to use a SessionFactory or EntityManagerFactory to obtain the hibernate session. What is the difference between the two? Pros & Cons?
42
votes
6answers
23k 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 ...
41
votes
11answers
81k 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?
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 ...
39
votes
1answer
45k 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
3answers
8k views
Hibernate lazy-load application design
I tend to use Hibernate in combination with Spring framework and it's declarative transaction demarcation capabilities (e.g., @Transactional).
As we all known, hibernate tries to be as non-invasive ...
38
votes
4answers
32k views
38
votes
5answers
65k 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 ...
37
votes
5answers
11k views
Create the perfect JPA entity
I've been working with JPA (implementation Hibernate) for some time know and each time I need to create entities I find myself struggling with issues as AccessType, immutable properties, ...
35
votes
5answers
44k 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
35
votes
4answers
18k 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 ...
34
votes
3answers
48k views
Hibernate HQL Query : How to set a Collection as a named parameter of a Query?
Given the following HQL Query:
FROM
Foo
WHERE
Id = :id AND
Bar IN (:barList)
I set :id using the Query object's setInteger() method.
I would like to set :barList using a List of ...
34
votes
9answers
31k 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;
...
33
votes
5answers
76k 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 ...
33
votes
12answers
106k 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 ...
33
votes
4answers
13k views
Can javax.persistence.Query.getResultList() return null?
And if so, under what circumstances?
Javadoc and JPA spec says nothing.
32
votes
4answers
12k views
hibernate or eclipselink?
It seems like EclipseLink has been chosen by sun as the reference implementation of JPA 2.0, nevertheless I see lots of people continue to use hibernate...
I have no experience with any of them, so I ...
32
votes
11answers
38k 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 ...