Top "Hibernate" questions

Hibernate is an object-relational mapping (ORM) library for the Java language enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping.

org.hibernate.MappingException: Could not determine type for: java.util.List, at table: College, for columns: [org.hibernate.mapping.Column(students)]

I'm using Hibernate for all CRUD operations in my project. It doesn't work for One-To-Many and Many-To-One relationships. It gives …

java hibernate orm
Joining two table entities in Spring Data JPA

I want to write a query like SELECT * FROM Release_date_type a LEFT JOIN cache_media b on a.…

spring hibernate jpa spring-data-jpa
Hibernate: "Field 'id' doesn't have a default value"

I'm facing what I think is a simple problem with Hibernate, but can't solve it (Hibernate forums being unreachable certainly …

java hibernate jpa persistence
How to change a field name in JSON using Jackson

I'm using jackson to convert an object of mine to json. The object has 2 fields: @Entity public class City { @id …

java jquery hibernate jquery-ui jackson
Hibernate dialect for Oracle Database 11g?

Is there a Hibernate dialect for Oracle Database 11g? Or should I use the org.hibernate.dialect.Oracle10gDialect that …

oracle hibernate oracle11g
Another Repeated column in mapping for entity error

Despite all of the others post, I can't find a solution for this error with GlassFish, on MacOSX, NetBeans 7.2. Here …

hibernate jakarta-ee mappingexception
What's the difference between session.persist() and session.save() in Hibernate?

Can anyone tell me what's the advantage of persist() vs save() in Hibernate?

java hibernate
What is the use of the @Temporal annotation in Hibernate?

The Hibernate Documentation has the information below for the @Temporal annotation: In plain Java APIs, the temporal precision of time …

java hibernate
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. …

hibernate initialization lazy-evaluation
org.hibernate.MappingException: Unknown entity: annotations.Users

Consider the hierarchy : And the following classes and xml : HibernateUtil.java package annotations; import org.hibernate.SessionFactory; import org.hibernate.…

java hibernate exception entity