Hibernate uses mapping metadata to find out how to load and store objects of the persistent class. The Hibernate mapping could be specified using configuration files or annotations.

learn more… | top users | synonyms

3
votes
0answers
322 views

Hibernate fetch MAP optimization (minimize SELECT statements)

How to fetch a map with no additional select statements. I have a hbm like this: <map name="officeSet" table="office_employee" inverse="true" lazy="false" batch-size="100" ...
2
votes
0answers
111 views

Intellij ERROR: No suitable driver found for jdbc:mysql://127.0.0.1:3306/person

first of all I couldn't find an answer from related questions in this forum. I am new to Hibernate technology and I am trying to run a basic example from this page: ...
2
votes
0answers
178 views

Hibernate: Joining across join tables on a non-primary key (but that is part of one)

I am trying to map a legacy database that has some fairly interesting join scenarios. I'm specifically attempting to join across a join table to a non-primary key. Right now, I am getting an error ...
2
votes
0answers
176 views

Transaction management with Spring and hibernate, using isolation_serializable

I am using Spring transaction management to control a application with hibernate, it uses two instance of threads to access concurrency database and modify one table. It is ensuring that the values ...
2
votes
0answers
92 views

Multiple data sources with the same type of entities but different database

I have the same data to be submitted into two different MySQL databases. As soon as it updates, inserts, deletes in one, it should immediately update, insert, delete in the other or else rollback ...
2
votes
0answers
304 views

MappingException: Could not determine type; Using @Embeddable and @Embedded

I am attempting to move a framework from hibernate3 to 4, this code worked in 3. The framework uses Interfaces to break the tight coupling of classes. Hence: The Entity class is marked with @Entity ...
2
votes
0answers
348 views

No suitable driver found for jdbc:mysql://localhost:3306/hibernate

I am using Eclipse and making a Web Dynamic Project using Hibernate JPA Annotation: When I run my project, it gives me the following error: No suitable driver found for ...
2
votes
0answers
376 views

IReport + Hibernate Datasource set specific NamingStrategy in cfg.xml

I'm using IReport 4.5.1 and HQL for querying database. So I define an hibernate.cfg.xml, put its root folder and required *.jar files to IReport's classpath. The problem arises when I want to use my ...
2
votes
0answers
255 views

hibernate join table mapping

I want to map two entity classes: @entity Class A{ private long A_ID // primarykey private long userID // not a primarykey } @entity Class B{ private long B_ID // primary key ...
2
votes
0answers
430 views

Hibernate subclass to override a column

We have an Entity library untouched by our web stack, but our web stack would like to extend existing columns on existing entities with validation constraints. Here's one example of the "goal": ...
1
vote
0answers
18 views

How to specify a field, so that when we query, using Joda LocalDate or LocalDateTime value for the field, it is mapped to same column?

I have a postgres database that has a table "draft" containing a column set_up_time, saved as a timestamp: @Column(nullable = false) @Type(type = ...
1
vote
0answers
35 views

Hibernate Pass parameter in Custom SQL for loading a collection

<hibernate-mapping package="com.test.info"> <class name="LevelInfo"> <composite-id> <key-property column="ID" name="id"/> ...
1
vote
0answers
95 views

Hibernate mapping throws class not found exception

I've been trying to start up Tapestry with Hibernate through SQL Server 2008. I followed the tapestry and hibernate guide at the start, but when I got to the mapping part, I got this class not found ...
1
vote
0answers
96 views

How to add an int array Default Value for a FluentNHibernate mapping

Recently, I added a new column to my UserMap class, to add an int array public class UserMap : ClassMap<User> { public UserMap() { Table("user"); LazyLoad(); ...
1
vote
0answers
135 views

Join two table on part of composite key in hibernate mapping

I have two tables as follows: Table A: site [pk] group [pk] Table B: group [pk] method[pk] gate [pk] Composite key for A - [site-group]. Composite key for B - ...
1
vote
0answers
67 views

When does org.hibernate.Session throw HibernateException?

I am trying to delete a non existent entity in a database but the delete() method doesn't thow any exception. How can I get an error when I try to delete a non existent entity? I have copied my ...
1
vote
0answers
122 views

how to restrict hibernate to extend column or create new table for collection element

I have table called employee_project on my database which is already made with the following columnEMPLOYEE_NUMBER,PROJECT_CODE,START_DATE,END_DATE,PROJECT_ROLE. There is one to many relationship in ...
1
vote
0answers
59 views

Two Entity with Common identifier @id in HIbernate

I am Using Spring3+Hibernate 3.0. I Have two beans (@Entity) Projects And Participants. I want both beans(Projects and Participants) should have common @ID identifier it means projects and ...
1
vote
0answers
30 views

map hibernate object with liferay internal table - many to many relation

i would like to know - if possible - how can i map a hibernate object model to an internal liferay table 'user_'. My Hibernate Object model is: @Entity @Table(name = "imageviewer_crreviewprotocol") ...
1
vote
0answers
165 views

Spring Data JPA with Hibernate mapping files

I want to use Spring Data JPA with Hibernate mapping files and without JPA-Annotations. But I'am facing this exception on server startup (tomcat): java.lang.IllegalStateException: No persistence ...
1
vote
0answers
53 views

hibernate xml mapping set error

I want to implement a one-to-many Relation, between Car and CarDetails. So one Car can have multiple CarDetails I get all the time this error: The content of element type "set" must match ...
1
vote
0answers
130 views

Hibernate Could not determine type for user type after migrate from session to entitymanager

I'm doing a migration from Session to JPA use, so I have most of the Mapping definitions in hbm.xml files. For this to work I create a persistence.xml file and reference my hibernate.cfg.xml from ...
1
vote
0answers
114 views

How to do many-to-many mapping in jaxb using orm

I am trying to use jaxb to autogenerate some hibernate mapped classes that contain a many-to-many relationship between Authors and Books. Database is postgres. What I am trying to achieve is ...
1
vote
0answers
82 views

Hibernate mapping of an Enum which implements an interface (i.e. is a subclass)

I'm getting my feet wet with Hibernate, and I've run into a problem which I can't find any solution to. I have an interface MyInterface and an enum implementing the interface: class MyInterface { ...
1
vote
0answers
26 views

One class for several tables in Hibernate

I'm using Hibernate to code an application that retrieves information from DB whose tables have the same base structure and then a variable number of columns (from the same type) Situation is as ...
1
vote
0answers
62 views

Hibernate : @OneToMany : Always deleting and reinserting the child records

Please help me resolve this issue. I tried googling for a solution and couldn't find one for this. Table structure Table: Catalog catalog_id (primary key) name Table: Catalog_Locale catalog_id ...
1
vote
0answers
180 views

Multi-Column Composite Key Mapping with Hibernate and JPA

I have been trying for a few days now to get the composite key to work looking at the many example on the web, but still am missing something since it isn't working. In the code below ...
1
vote
0answers
34 views

How can I persist a parent with two references to same transient child?

I have a hibernate parent-child relationship where the parent has a separate, one-to-one relationship with one of the children. If the referenced child is transient, how can I persist the parent and ...
1
vote
0answers
16 views

Is there a way to do cascading persist programmatically in hibernate?

I understand that it is possible to do so via annotations in the persistent class, but is there a way to achieve the same using the API? For instance passing an argument to saveOrUpdate to tell the ...
1
vote
0answers
116 views

Hibernate manytomany @JoinTable + @SecondaryTable duplicate entries

I have a relation of type @ManyToMany with a @JoinTable association. The thing is that the entity in the relation has its own table, but a couple of properties should go to the association table. ...
1
vote
0answers
220 views

Hibernate auto import false for all hibernate mappings

Is there any way to tell hibernate that i want all the hbm.xml files to be marked with flag auto-import=false.
1
vote
0answers
264 views

Duplicate entries in join table. Using Hibernate, Spring

I have 3 Tables : Entity CREATE TABLE `entity` ( `entity_number` bigint(20) NOT NULL AUTO_INCREMENT, `title` varchar(6) DEFAULT NULL, `name` varchar(45) NOT NULL, `surname` varchar(45) NOT ...
1
vote
0answers
79 views

Retrieve Node attribute value from hibernate-mapping

Suppose I have a entity class definition in hbm mapping file as below <class entity-name="user" node="User" table="dbo.user"> Is there any way to use ClassMetadata or AbstractEntityPersister ...
1
vote
0answers
120 views

Hibernate include Stored proc in schema export

I've created a stored procedure in my MySQL database and I want a way to have hibernate include the proc when I run org.hibernate.tool.hbm2ddl.SchemaExport to dump my hibernate configuration into a ...
1
vote
0answers
282 views

JPA not creating columns when using @PrePersist & @PreUpdate

I am attempting to resolve the same old issue with having a reusable set of Created and Updated time stamp fields. I have attempted to implement this solution: using @PrePersist and @PreUpdate with ...
1
vote
0answers
310 views

Wrong HBM mappings when using a mapped superclass in an inheritance graph for ColdFusion 9.0.1 Hotfix 2

Let's say I have an inheritance graph where the base class extends a mapped superclass: component name="Entity" mappedSuperClass="true" { property name="CreatedOn"; } component name="Pet" ...
1
vote
0answers
514 views

one-to-many relationship with table having composite key

This is the full code for mapping of the tables I am doing. But dont know why I am getting java heap space error. I am using Jboss server and the exact error message is java.lang.OutOfMemoryError: ...
1
vote
0answers
252 views

hibernate generation for dynamic map

I am trying to generate hbm.xml files to support the dynamic map mode of Hibernate. When I run hbm2hbmxml my classes are generated with the name attribute instead of the entity-name attribute. When I ...
1
vote
0answers
64 views

many-to-many: 'parent' is deleted when there is still another 'child'

I have a many-to-many relationship where two records on one side have the same parent (the owner of the relationship) on the other side. When I delete one of the two records the parent and jointable ...
1
vote
0answers
404 views

calling stored procedure by hibernate

I'm writing a java web-based application that stores its data in Microsoft SQL server 2008 and connect to database by hibernate. I have three tables and also three classes same as them in source ...
1
vote
0answers
515 views

hibernate @CollectionOfElements not persisted

HI, I am using Hibernate with plenty of satisfaction so far. Lately it seems that I am not able to persist a @CollectionOfElements using annotation. I am saving an object of class Estate which ...
0
votes
0answers
21 views

On session.update() for the parent object, the child table gets duplicate entries with parentId field as null

I have two tables with one to many relationship. When I save a new parent object with two children using hibernate session.save(), it is saving correctly. But if I do a session.update() for the parent ...
0
votes
0answers
40 views

java.lang.NullPointerException at org.hibernate.tuple.entity.AbstractEntityTuplizer.getPropertyValue(AbstractEntityTuplizer.java:521)

I am new to hibernate, I just had some doubts and clarified in this website (One to many relationship and Other object relation). For the same application i am facing different issue. the ...
0
votes
0answers
17 views

Fetch parent object using child in hibernate

I have an issue with hibernate mapping to retrieve parent using a child object. Below are the details - TABLE_A ID VAL 1 A 2 B 3 C 4 D ...
0
votes
0answers
15 views

Mapping one-to-many with several foreign keys

I have the following entities: @Entity @Table(name = "ITEM_WEIGHTS", uniqueConstraints = {}) public class ItemWeight { private ItemWeightId id; @Column(name = "PERCENTAGE", unique = false, nullable ...
0
votes
0answers
19 views

Hyperjaxb/JPA : Many to Many relationship

I am new to hyperjaxb. I want to implement many-to-many relationship between 2 entities, Customer and User. My xsd looks like <xsd:complexType name="Customer"> ...
0
votes
0answers
31 views

Create table JPA hibernate Glassfish V3… impossible

I try to developp a web application with primefaces, Glassfish v3, hibernate, JPA, Mysql and I find problem to create by JPA the table. The log server is next ...
0
votes
0answers
19 views

Hibernate Criteria.LEFT_JOIN is not behaving properly. Neither Inner Join behaves properly(Not applying Restriction.in)

I have 2 simple models: class Parent{ Long id; String name; Set<Chiild> children; ..... getter and setter.... } class Child{ String name; Long parentId; // forign key } I have ...
0
votes
0answers
32 views

why generationtype.sequence in mysql doesn't work?

i am developing an application using hibernate 4.1, zk 6.5 and mySql 9.3, I tried using generationtype.sequence in my code but unfortunately it returned an error, after doing some research on the ...
0
votes
0answers
19 views

Hibernate mapping works for Tomcat but throws mapping erros running in Weblogic

I need to adapt my application to run in Weblogic 10.3.6 but I'm getting this error above: ... Servlet failed with Exception org.hibernate.MappingException: property mapping has wrong number of ...

1 2 3 4 5 7