Tagged Questions
Historically, Hibernate facilitated the storage and retrieval of Java domain objects via Object/Relational Mapping. Today, 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.
143
votes
2answers
18k 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.
...
82
votes
21answers
7k 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 ...
76
votes
11answers
42k 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 ...
62
votes
11answers
48k 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 ...
56
votes
13answers
29k 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?
54
votes
4answers
84k views
Hibernate question 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 ...
42
votes
9answers
98k 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 ...
35
votes
18answers
19k views
Light weight alternative to Hibernate?
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 ...
34
votes
3answers
10k 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 ...
34
votes
8answers
38k 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 ...
33
votes
11answers
10k views
Hibernate, iBatis, JEE 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 JEE API is simpler. ...
31
votes
7answers
3k 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 of them if not all depend on Hibernate, but I'd like ...
30
votes
13answers
20k views
What are the best books for Hibernate & JPA? [closed]
My team is about to build a new product and we are using Hibernate/JPA as the persistence mechanism. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My ...
28
votes
6answers
13k views
hibernate show real sql
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 ...
28
votes
8answers
11k 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
...
26
votes
8answers
23k 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 ...
25
votes
3answers
6k 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.
25
votes
2answers
29k 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 ...
25
votes
18answers
5k views
Java Frameworks War: Spring and Hibernate
My developers are waging a civil war. In one camp, they've embraced Hibernate and Spring. In the other camp, they've denounced frameworks - they're considering Hibernate though.
The question is: Are ...
24
votes
2answers
22k 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 ...
23
votes
11answers
2k views
Why are people continuing to use xml mapping files instead of annotations?
I've observed the strange fact (based on the questions in the hibernate tag) that people are still actively using xml files instead of annotations to specify their ORM (Hibernate/JPA) mappings.
There ...
23
votes
9answers
34k 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 ...
22
votes
5answers
4k 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 ...
22
votes
8answers
20k 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, ...
22
votes
7answers
37k 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 ...
21
votes
4answers
3k 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 ...
21
votes
9answers
10k 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 ...
20
votes
13answers
6k views
What should I learn first, Spring or Hibernate?
I've just started learning Struts and I'm trying to be marketable for a good job as a Java programmer. My next decision would be choosing which to learn next, Spring or Hibernate?
Also do you guys ...
20
votes
10answers
24k 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 ...
20
votes
8answers
21k views
Case-insensitive search using Hibernate
I'm using Hibernate for ORM of my Java app to an Oracle database (not that the database vendor matters, we may switch to another database one day), and I want to retrieve objects from the database ...
19
votes
6answers
2k views
what are good blogs to read relating java, spring, hibernate, maven?
To continue to question further I'm more interested in blogs, websites who once in a while release a tutorial, tip or best-practice on the topics I mentioned. For ex :
http://net.tutsplus.com/ is ...
18
votes
1answer
5k 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 ...
18
votes
4answers
6k 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?
18
votes
7answers
21k views
How can I use Maven to get the latest Hibernate release?
I am having trouble getting the latest release of Hibernate via Maven dependency. It appears that the latest I can fetch from a Maven central repository is 3.2.6.GA, and I am interested in using ...
17
votes
1answer
15k 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 ?
17
votes
6answers
17k 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
17
votes
3answers
28k 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 ...
17
votes
8answers
17k 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;
...
17
votes
5answers
22k views
Hibernate 3.4 with slf4j and log4j
I'm attempting to upgrade from Hibernate 3.2 to 3.4, which apparently uses slf4j. Our project currently uses log4j. So my assumption is that I should be using the slf4j-log4j12 wrapped implementation.
...
17
votes
4answers
43k 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 ...
16
votes
2answers
919 views
Specify foreign key constraint name when using Map and @ElementCollection with Hibernate
I have a sort of exotic mapping for a field:
@ElementCollection
@CollectionTable(name = "studentGradeLevel", joinColumns = @JoinColumn(name = "studentId"))
@MapKeyJoinColumn(name = "schoolYearId")
...
16
votes
3answers
2k 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 ...
16
votes
10answers
8k views
Unit testing a Hibernate driven application?
This may be a naive question, but I am new to both the junit and hibernate frameworks and I was wondering what the best way to go about unit testing an application that is largely calls to hibernate, ...
16
votes
9answers
7k views
Is there a more efficient way of making pagination in Hibernate than executing select and count queries?
Usually pagination queries look like this. Is there a better way instead of making two almost equal methods, one of which executing "select *..." and the other one "count *..."?
public ...
15
votes
1answer
270 views
Write-Behind Cache for JPA
It would appear from searching around here and the web at large that it is not possible to implement EHCache as a write-behind cache for Hibernate, as that would require substantial changes to the ...
15
votes
3answers
2k 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 ...
15
votes
8answers
356 views
Choose 'better' or more familiar technologies for a new project?
I am looking to start work on a brand-new project, something I've been thinking about for a while as my first independent sellable project.
It's broadly speaking a web-based service application, and ...
15
votes
6answers
4k views
Hibernate and Scala
I have been toying with Scala and I was wondering if anyone had had any experience with using hibernate and mysql as a persistent store for scala objects? Does it work out of the box or is there a lot ...
15
votes
4answers
34k 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 ...
14
votes
1answer
658 views
Sorting on Column in Type Table with ColdFusion ORM
I have three tables, with the following structure:
http://dl.dropbox.com/u/2586403/ORMIssues/TableLayout.png
The three objects I'm dealing with are here:
...