Top "Hibernate3" questions

Hibernate ORM (Hibernate in short) is an open source object-relational mapping library for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database.

How do you do a limit query in JPQL or HQL?

In Hibernate 3, is there a way to do the equivalent of the following MySQL limit in HQL? select * from a_…

java hibernate hql hibernate3
How to solve hibernate error: Repeated column in mapping for entity?

HI, I have the following model: @Entity class Flight{ private Airport airportFrom; private Airport airportTo; @OneToOne(fetch=FetchType.LAZY,optional=…

java hibernate-mapping hibernate3
JDBC Driver class not found: com.mysql.jdbc.Driver

I am developing a web application using maven spring and hibernate and I need to create schema using hibernate for …

jdbc web-applications mysql5 hibernate3
Hibernate: org.hibernate.AssertionFailure: null id in com.xxx.Bean entry

I was faced to the following error: com.google.gwt.user.server.rpc.UnexpectedException: Service method 'public abstract void com.…

java mysql hibernate mysql5 hibernate3
high performance hibernate insert

I am working on a latency sensitive part of an application, basically i will receive a network event transform the …

java performance hibernate3
hibernate3-maven-plugin dependencies for newer version of hibernate

I would like to use hibernate-3.5-1.Final along with this plugin, what should be my dependencies here. It seems …

hibernate maven-2 hibernate3
When to use transactions in Spring with Hibernate?

Upgrading my project I'm thinking here about transactions. Well, the thing is I'm not quite sure when should I use …

java spring-3 spring-transactions hibernate3