0
votes
0answers
71 views

Unexpected jdoDetachedState column when using hibernate in gwt project

I think it's a simple question for professionals but I am confused. I'm trying to save simple model class Person import java.io.Serializable; import javax.persistence.Entity; import ...
0
votes
1answer
112 views

Lazy loading and Fetch strategies

I am using Hibernate 3.6 User is an entity class Contact is an entity class User has a Set<Contact> The relationship is uni-directional and mapped as one-to-many. I have tried out the ...
0
votes
0answers
19 views

Address classes and hibernate mappings

In my case address - is a complicated component that consists of Country, State, Town and Street entities. Each of them depends on another (one-to-many relationship between parent and its child). ...
0
votes
1answer
97 views

Hibernate many-to-many data retrival

I have two objects User and Contact, with many to many relation, and I am using an intermediate table for this relation USER_CONTACT Saving the data in this association is fine, but the retrieval is ...
1
vote
1answer
93 views

Delete Parent and Child in One-Many Mapping in Hibernate

Parent Table <property name="buyerGroupName" type="string" column="BUYER_GROUP_NAME" /> <property name="description" ...
1
vote
0answers
78 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 ...
0
votes
1answer
109 views

Hibernate ManyToMany same JoinColumn name

I have two entity classes Activity and User. The relationships between them are: One Activity can have one or many User One User can belongs to one or many Activity So to achieve this I have ...
0
votes
1answer
159 views

Convert classes relationships in Java into database schema

What is the best tool/framework to convert classes into database schema automatically without XML mapping files? My problem is this, I have around 20 classes with different relationships ...
1
vote
1answer
151 views

Hibernate-NamedSqlQuery UserType as a ReturnType

I've got a mapped class in Hibernate that contains a named sql-query that calculates the minimum of an integer for some search-parameters. The actual query is quite complex (so I can neither write it ...
1
vote
0answers
131 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 ...
0
votes
0answers
101 views

hibernate set transient property in query

Say I have two tables, user and purchases (One to Many) The User entity has a transient property lastPurchase which is used to link the last purchase in the DB (via a date column) Is it possible to ...
1
vote
1answer
62 views

Hibernate @OneToOne gives error

I have two entities Item. They are linked with entity Link Each item can have many links, but link is a connection between two items. The problem is that the order of items is important. One is ...
0
votes
1answer
66 views

Which one the most efficient - HQL

In hibernate, for example I have two object which has relation. The object is like this First object : Customer @Entity @Table(name = "customer", catalog = "test") public class Customer implements ...
0
votes
2answers
820 views

org.hibernate.MappingException: Foreign key XXX must have same number of columns as the referenced primary key YYY

Having a following SQL table: create table users_posts_ratings_map ( postId integer not null references posts (id), userId integer not null references users (id), ratingId integer not null ...
1
vote
2answers
141 views

Three-way hibernate ORM mapping - how to?

I have a three SQL tables: create table users ( id serial primary key, name text not null unique ); create table posts ( id serial primary key, data text not null, authorId integer not ...
1
vote
1answer
47 views

Is it possible to map different field types using hibernate?

I'm wondering if it's possible to map different data types. For instance, I have a Visit data type in Java, which has a userEmail field which is of the type String, and can I map it with hibernate to ...
0
votes
0answers
204 views

org.hibernate.AnnotationException: Cannot find the expected secondary table, while instatiating an entity in Hibernate

I have some hierarchical tables in my Oracle database like, TRANSPORTER->ZONE->COUNTRY->STATE->CITY (from parent to child) and many others. Among them, the entity class of the COUNTRY table is as ...
3
votes
1answer
150 views

Coldfusion 10 ORM “Error while resolving the relationship”

I've had an ORM application working for two years now local on my laptop for dev purposes and the ORM mappings have been working very well. The app was originally created in CF9 but my local CF was ...
1
vote
2answers
82 views

Hibernate. How to map own class as type of property in entity?

How to map with Hibernate my own class as type of property in other class? For example I have class Address and class User. And I try to map as following: public class User { private Long id; ...
0
votes
3answers
350 views

session.connection( ) deprecated

We moved to hibernate 4 recently. Our application has many files which has session.connection () which is deprecated. I have replaced with session.doWork() by calling like this : session.doWork(new ...
0
votes
2answers
145 views

Hibernate - Entity not getting updated

I am trying to update the User entity and its being updated: Please refer below code: Hibernate Mapping File: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC ...
0
votes
1answer
124 views

Many to One or Many to Many mapping in ROLE-PERMISSION Scenario

I am new to Hibernate and just going through few samples After going through few samples, I am still confused on deciding the relation between tables. consider the scenarion, I have Role and ...
1
vote
1answer
255 views

mapping more than 2 table in hibernate annotation

i have three table and i want to map them in hibernate 4. i am using many to one annotation. i don't know how to map more than 2 table. 1. Stuff CREATE TABLE TBLSTUFF ( STUFF_ID ...
0
votes
1answer
994 views

hibernate IllegalArgumentException in joined-subclass with Composite key

Edit #2 - Added person class at bottom. This is driving me nuts! I think this is a mapping problem, but I'm not sure. I'm new to Hibernate and I think using a joined-subclass with composite key is ...
0
votes
1answer
1k views

Hibernate issue with @OneToMany @JoinTable and update operation

I am running into a somewhat strange issue; I have the following JPA mapping: @Entity public class Location { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Column(name = "LOCATION_ID") ...
0
votes
0answers
137 views

Hibernate annotation mapping, complicated diagram

I have some big problems with making a proper mapping for delivered diagram. It looks like this: Now, so far I did this, hopefully its ok (ommited getters/setters). You'll notice that USERS has ...
0
votes
1answer
209 views

Hibernate - create subclass when persisting super class

I have a problem in creating proper hibernate mappings for my web application. I have a table User (primary key is id). The user table has data that doesn't change too often for a user. I have ...
0
votes
1answer
187 views

Dynamic generation of POJO (Object Model; setters and getters) and Hibernate mapping , When supplied only table name as a argument

My question is a bit tricky, I am trying best to make you understand what my requirement is. Question: I want to generate a csv file from the database table ! see how. a dummy method just for ...
1
vote
2answers
355 views

Hibernate mapping a specific field to be loaded by a table join

Is there a way I can map a field in an hibernate object to be loaded with a table query? As an example lets say Table_Message has fields ...
1
vote
1answer
304 views

case insensitive hibernate criteria on composite key

I am having a hibernate entity with composite key like the below sample. class A{ B id; //this is the composite key for this class int property1; int property2; int property3; //getters and setters } ...
1
vote
1answer
519 views

How do I define unique constraint in hibernate for this situation?

Destination and DestinationAlias at database level look like this: In DestinationAlias, (idDestination, alias) is unique. POJO for DestinationAlias: @Entity @Table(name = "DESTINATIONALIAS", ...
2
votes
2answers
7k views

Hibernate Mapping Exception : Repeated column in mapping for entity

There is a mapping exception for a particular entity. Cant figure out from where the problem is arising. I checked all the mappings 3 times from start to end. Still i am getting a Mapping Exception. ...
0
votes
5answers
9k views

org.hibernate.exception.SQLGrammarException: could not insert [com.sample.Person]

I'm trying to set up a small working sample of Hibernate that I found here However when I run the code I get the follwing error Exception in thread "main" org.hibernate.exception.SQLGrammarException: ...
0
votes
1answer
119 views

how do I add another search parameter in hibernate mapping?

I am new to hibernate and still learning the basics. I'd appreciate if someone can point me in the right direction. I have a class: Destination id name longitude latitude I can read destinations ...
1
vote
4answers
2k views

Exception in thread “main” org.hibernate.MappingException: Unknown entity: from Destination

I am learning hibernate and I can't figure out why is this error popping up. I tried searching but I couldn't find a solution that helped me. I'd like to learn why am I getting this error. Exception ...
3
votes
1answer
315 views

ColdFusion 9 ORM “LEFT JOIN” in Join Mapping

It's been a while since I last used the Hibernate implementation in CF9 and right now I'm at a point where I can't see the woods for all the trees (probably not enough coffee). I've simplified the ...
1
vote
0answers
80 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 ...
2
votes
1answer
761 views

Incorrect mapping for length attribute in JPA @Column

I'm using Hibernate 4.0.0.Final as the JPA persistence provider for an application, with an Oracle 11g database (created with UTF-8 encoding) and Oracle WebLogic 11g as the application server. The ...
2
votes
3answers
7k views

Hibernate throws strange error: Class is not mapped

this is the error org.hibernate.hql.ast.QuerySyntaxException: Payment is not mapped [select p from Payment p] I don't understand how come this error is thrown, the class should be mapped as I will ...
0
votes
1answer
401 views

How to properly map nested subclasses using hibernate

How do I nest subclasses with Hibernate? For example, I have the following class hierarchy: PageElement - PageParagraph - PageImage - PageVideo - PageAudio - PageQuestion - ...
0
votes
1answer
136 views

How to use top level collections in hibernate?

I am trying to use Top Level Collections concept described in this post : Here is some part of that post : Top-level Collections A top-level collection is a collection defined outside of ...
0
votes
2answers
130 views

How to do this hibernate mapping?

I am newbie to hibernate world, so sort of confused in writing mapping file in following condition. I have following class which I want to persist using hibernate : class Project { int ...
1
vote
0answers
318 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" ...
0
votes
2answers
1k views

Hibernate hibernate.hbm2ddl.auto=create/update/validate doesn't work for correctly for custom dialects?

I recently upgrade Hibernate from version 3.3.x to 3.6.4. In version 3.3.x validateSchema (hibernate.hbm2ddl.auto=validate) works correctly. In version 3.6.x validation is broken (tested for 3.6.4 ...
2
votes
1answer
152 views

Hibernate persistence by reachability & detached objects

I'm curious to know how Hibernate would handle the following situation. Let's say we have a User entity, which has a country property, set to cascade the persistence: public class User { ...
4
votes
1answer
366 views

Hibernate query on superclass property

First of all, please forgive my ignorance in both Java and Hibernate, I'm studying different ORM solutions and am not a Java programmer. 1) Is it possible to map the following class hierarchy to a ...
1
vote
1answer
757 views

Hibernate — Using @SecondaryTable, @OneToMany

(Simplified Example below) I'm trying to map one POJO class with 2 DB tables and also creating a OneToMany association. Here is how the class looks like.. @Entity @Table(name = "external_data") ...
1
vote
2answers
3k views

Hibernate oracle integrity constraint violated

I got a problem mapping oracle by hibernate I got these classes Stock.java package com.mc.stock; import java.util.HashSet; import java.util.Set; import javax.persistence.Basic; ...
0
votes
1answer
739 views

Hibernate readonly collection mapping

I'm taking the following many-to-many mapping example from this Hibernate Mapping Cheat Sheet: <class name="Foo" table="foo"> ... <set role="bars" table="foo_bar"> <key ...
1
vote
2answers
523 views

Entity hierarchy in Hibernate

What's the proper way to create 2 entities where 1 is a parent of the other? For example, we have the following 2 tables: Email_Outbox ------------ Id Email_Id Date_Sent Email_Outbox_Schedule ...

1 2