30
votes
2answers
3k views
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.
I know than Nhibernate …
15
votes
8answers
8k 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 …
11
votes
20answers
1k views
From Computer Scientist to Software Engineer
Hello Stackoverfellows,
I graduated in December in Computer Science and have acquired a Software Engineering position. I have been banging my head up against the wall for 2 months trying to learn …
10
votes
13answers
632 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 …
10
votes
4answers
719 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
…
10
votes
2answers
649 views
SQl Query to Hibernate Query
I have a MYSQL query that I use to retrieve random rows from a table. The query is :
SELECT * FROM QUESTION WHERE TESTID=1 ORDER BY RAND() LIMIT 10;
Now I need to change this query to Hibernate. Did …
10
votes
17answers
2k 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 …
9
votes
7answers
3k 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?
9
votes
8answers
2k 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 …
8
votes
11answers
2k 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 …
8
votes
9answers
1k views
What’s the best way to share business object instances between Java web apps using JBoss and Spring?
We currently have a web application loading a Spring application context which instantiates a stack of business objects, DAO objects and Hibernate. We would like to share this stack with another web …
7
votes
3answers
128 views
Check invariants in hibernate mapped classes
One challenge using hibernate is that manged classes have to have a default constructor. The problem is that there is no explicit point where the class is initialized and invariants can be checked.
…
7
votes
3answers
151 views
Un-committed database transactions and auto-increment columns
I encountered some curious behavior today and was wondering if it is expected or standard. We are using Hibernate against MySQL5. During the course of coding I forgot to close a transaction, I …
7
votes
6answers
328 views
Which one should I learn? Spring+Hibernate or Java EE?
I've been doing some Java development, and have learnt my basics. I would like to take my skill to the next level by learning frameworks that are mainstream.
I hear about Spring + Hibernate all the …
7
votes
7answers
544 views
What can be done with ‘PermGen out of space’ exception in Tomcat-Spring-Hibernate web application?
We have an web application that uses Spring-Hibernate to persist registered users data in Oracle database. The application works fine in development environment, but when we copy it int live …
