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.
0
votes
1answer
60 views
In hibernate, wrong value used as parameter for fetching set
I have to hibernate entities and tables with a one to many relationship. One is a user and the other is a car object. I believe where the discrepancy is, is that I am attempting to join on field ...
0
votes
1answer
57 views
SENSITIVE cursor “SQL_CURSH200C1” cannot be defined for the specified SELECT statement.. SQLCODE=-243, SQLSTATE=36001, DRIVER=4.13.127
For a query as simple as this one, DB2 is throwing SQL error for no reason when used in hibernate.
I think i have all the settings of DB2 for hibernate properties right, cause some other queries are ...
1
vote
1answer
105 views
hibernate not populating collection but query matches
I have a hierarchy of objects in hibernate. I am simply printing the hierarchy out by looping through the hierarchy.
Everything prints out great until I get to the bottom of the hierarchy. I have a ...
0
votes
0answers
32 views
could not parse mapping document from resource
I always get this error message when i call my servlet...
failed:org.hibernate.InvalidMappingException: Could not parse mapping document from resource CarDetail.hbm.xml
CarDetail.hbm.xml:
<?xml ...
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 ...
0
votes
1answer
326 views
JPA - OneToMany association between person and address but cannot create @NamedQuery with association
i am new to hibernate and jpa. Basically i have 2 tables Person and Address. A person can have many address. I have a OnetoMany relationship between person and address. I want to get the firstname and ...
1
vote
1answer
1k views
foreign key must have same number of columns as the reference primary key hibernate - many to many
I have domain Classes - User, Role, Group, Group Role
User Domain
private long id,
private String userName,
private String password,
Set<Role> roles = new HashSet<Role>();
...
0
votes
0answers
56 views
Mapping Cross Table in Hibernate
I am using hibernate tools to map my MySql database tables. There is a many-to-many mapping between two tables, the mapping files (.hbm.xml) and POJOs are generated correctly for the two tables, but ...
0
votes
1answer
52 views
How to pass a service to an EmptyInterceptor class?
public class Auditing extends EmptyInterceptor {
@Resource
private ApplicationService applicationService;
public boolean onFlushDirty(Object entity, Serializable id,Object[] ...
0
votes
0answers
53 views
How do I access fields from an encapsulating object when setting custom Hibernate usertype
I am encrypting several database fields using AES - unfortunately we aren't able to encrypt the database's hard drive and so we believe that this is the best alternative (the most sensitive piece of ...
0
votes
1answer
225 views
Issue to create jpa - hibernate inner join query
i am new to jpa hibernate, i have an inner join query in sql but not sure how to create the same query in jpa-hibernate syntax:
Basically i have 3 tables:
...
0
votes
1answer
277 views
ORA-01400: cannot insert NULL in @manytomany unidierctional
I am inserting a User object with roles(existing) roles .
It is giving me unable insert null in user_role.id
Schema
@Entity
@Table(name = "user_data")
public class User extends Serializable {
...
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
115 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
1answer
63 views
Mapping the primitive boolean to Charater Y/N with Hibernate [duplicate]
Possible Duplicate:
Configure hibernate (using JPA) to store Y/N for type Boolean instead of 0/1
Is it possible to map the primitive boolean to a Y/N character with hibernate?
0
votes
0answers
96 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 ...
-2
votes
3answers
424 views
Hibernate table not mapped error
I have a web application that use Hibernate to make CRUD operations over a database. I got an error saying that the table is not mapped. See the java files:
Error message:
...
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
1answer
59 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
4answers
252 views
Hibernate Mapping necessary?
I'm new to Hibernate, I downloaded a sample Java app and modified it to be more useful, so far in my app I have two db classes that are defined in my Java app : Actor.java and City.java
Each of them ...
0
votes
2answers
218 views
Hibernate one to many insert
As you can see I have two tables(Offer,Items)
I have a problem with inserting Items,every time I add Offer it does not insert List of Items. Offer holds a list of items.
Here is my code:
OFFER:
...
0
votes
3answers
363 views
Hibernate unidirectional OneToMany delete violates constraint ( optional=false at parent side?)
I use Hibernate 3.6 and I have something like this:
@Entity
public class Parent {
@OnyToMany( fetch = FetchType.LAZY, cascade = { ascadeType.ALL } )
@Cascade( { ...
2
votes
1answer
136 views
Is it necessary to use AnnotationConfiguration for Hibernate Configuration?
I want to use Configuration() methot. But I get this error:
Initial SessionFactory creation failed.org.hibernate.MappingException: An AnnotationConfiguration instance is required to use <mapping ...
0
votes
1answer
477 views
How to Write Hibernate Mapping File For a Stored Procedure
I have a MySQL Stored Procedure which accepts two Input Dates and Returns EmpCode,Name,Department,Employee_Absent_Date and Total_No_OF_Days
StoreProcedure(Employee Absent Report for a Two Given Dates ...
0
votes
1answer
71 views
N+1-query with Hibernate and join tables
Have a n+1-query problem with Hibernate.
Have 2 classes: Employee, Office.
public class Employee {
private int employeeId;
private Set<Office> offices;
}
public class Office {
...
0
votes
0answers
91 views
Can not OneToMany target mapped in Hibernate (@OneToMany targeting an unmapped class)
I am doing a project. I am using hibernate in jboss with maven. However in relation two classes, errors are given.
I added two classes to persistence.xml and hibernate.cfg.xml.
I did'nt use ...
0
votes
1answer
126 views
Explicitly changing the name of a column with Hibernate
How can you rename a field name in a table which generates Hibernate?
When you create:
@ManyToMany(targetEntity = GroupRightEntity.class)
or
@ManyToMany(targetEntity = UserRightEntity.class)
Now ...
0
votes
1answer
59 views
Setting the value of a column according to the count() of the referred rows in another table to my table in SQL and hibernate mapping
I have the following tables in my database. I want the column booked_items in the testuser table to contain the number of rows associated with the user in the testbooking table. It is surely can be ...
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
1answer
112 views
Unwanted row deletion in Hibernate, when mapping many-to-one
I have the following mapping in my hibernate application. When I delete a row from this Booking table, the correspondent rows in the User and item tables are deleted. I use delete method of hibernate ...
-1
votes
1answer
286 views
Hibernate delete parent and child records
I' have two tables with annotation like this:
Company:
@OneToMany(mappedBy="company",fetch=FetchType.LAZY)
private List<Employees> employees;
and
Employes:
...
1
vote
1answer
421 views
Hibernate Date mapping to SQL Server datetime rounds by 1ms
I have searched a lot on stackoverflow and found out that mapping java.util.Date to SQL databases often causes problems and possible solutions are to
Create own (use jodatime) hibernate UserType
...
0
votes
2answers
286 views
Getting error Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class
I am newbie to JPA/Hyperjaxb arena. My goal is to generate a many-to-many mapping between Author and Book tables (postgres database).
In the database- Author table has columns - id, name and Book ...
0
votes
1answer
82 views
How to save only the date in hibernate?
I have mapped a property with the Java.util.Date type to a table column in a MySQL database. It saves the whole date/time! How can I make hibernate to save only the Date and not the time.
My mapping ...
0
votes
0answers
133 views
How to specify primary key and toString with Hibernate reverse engineering
I am having trouble getting the Hibernate tool hbm2java to convert the reverse engineering file correctly. I want to be able to specifying the primary keys to be used in the toString and equal ...
0
votes
1answer
219 views
get updated row in one to many mapping using hibernate
I have two entities Issue and Issue_Tracker. I have joined both table in an one to many mapping. In Issue_Tracker , We can have multiple entries like
issue_id tracker_status tracked_time
...
0
votes
1answer
36 views
Could not parse mapping document error in hibernate
This is my first post in stackoverflow:
I am new to hibernate, infact below is my first code in hibernate:
i am repetedly getting "could not parse mapping document" error, when i run my main class.
...
0
votes
0answers
147 views
Native Query - Result transformer in Hibernate mapping XML (HBM)
I need to populate the result-set of a native sql query to a DTO.
From the Hibernate documentation I read, that ResultTransformers can be used to returning non-managed entities.
Is there a way to ...
0
votes
1answer
130 views
Hibernate Bidirectional Many to One
I have an issue with the following error:
Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/library.xml]: Invocation of init method failed; nested exception ...
0
votes
1answer
62 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 ...
-2
votes
1answer
180 views
show data in jqgrid column
I am using Struts 2.3.7, struts2-jquery-grid-plugin-3.5.0 and hibernate 3.6. I am using one to many mapping to join two entities.
These Entities
Issue.java
public class Issue implements ...
0
votes
0answers
54 views
Hibernate Query for selecting only some special classes from a table per hierarchy table
I have the following class structure:
GParent
|-P1
|-C1
|-C2
|-C3
|-P2
|-C4
|-C5
GParent, P1, P2, Ci (i=0..6) are classes. They have been mapped to a table called yatable in my database. ...
0
votes
0answers
163 views
hibernate not able to create tables in sql server
I am trying to connect through hibernate but it is not able to create table if I create table in sql server by manually then select,insert and delete query is working fine, I am using following ...
0
votes
2answers
671 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
1answer
267 views
hibernate doesn't update discriminator column when I update with another object
I have used a "class per hierarchy strategy" for mapping the following class hierarchy in Hibernate.
I have Item as an abstract class.
The followings as concrete ones:
Book
Journal
DVD
CD
My ...
0
votes
1answer
275 views
Exception in thread “main” org.hibernate.MappingException: Association references unmapped class hibernate
i have a hibernate exception, this is the log and the exception.
i ll attache the codes and the hbm maps.
12:39:45,077 INFO Environment:570 - Hibernate 3.5.6-Final
12:39:45,124 INFO ...
1
vote
2answers
132 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 ...
0
votes
1answer
167 views
Hibernate : Jointable to join a particular child table
I have two set of inheritance tables :
1. TableA (inherited by TableA1 and TableA2),
2. TableB (inherited by TableB1 and TableB2)
DiscriminatorColumn for TableA is 'type' and DiscriminatorValues are ...
0
votes
1answer
130 views
mapping one-to-many relation with Fluent NHibernate does not contain any child when browsing through one-end
I've created the following domain classes:
public class Car
{
public virtual int Id { get; set; }
public virtual string Registration { get; set; }
public virtual User ResponsibleContact { ...
0
votes
0answers
261 views
“PropertyAccessException: could not set a field value by reflection setter” With Hibernate 4
In the past I've used a java.util.Calendar with Hibernate 3 (from J-boss 5.1) and @Temporal annotation. After moving to Hibernate 4 (j-boss 7.1) I've run into this PropertyAccessException when trying ...

