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
64 views
Hibernate IN clause showing error
I have to add a string array to the IN clause.
My hibernate query looks like this,
Query q =
session.createQuery("from CsePrcsngGroup where CSE_SID=? and ...
0
votes
0answers
38 views
Representing a bidirectional OneToMany association when joined-subclass is used
How to represent a bidirectional One-To-Many association in XML when joined-subclass is used?
My two classes:
public class A {
private Long id;
private Set<B> bs = new ...
0
votes
1answer
85 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 ...
0
votes
1answer
97 views
org.hibernate.MappingException: Repeated column in mapping for entity: Invoice column: INVOICE_ID
Hibernate is saying that mapping for the column INVOICE_ID is repeated. But I am unable to understand this exception. Please Help !!
My Invoice class is given below :
@Entity
...
0
votes
1answer
249 views
org.hibernate.MappingException: Could not determine type for: java.util.Set, at table: USERS, for columns: [org.hibernate.mapping.Column(invoices)]
I have a problem that Hibernate is unable to determine the type for Set at the table USERS.
I am trying to create a foreign key of table INVOICES through one-to-many relationship. One User can ...
0
votes
0answers
18 views
GOal Definition Of spagobi
I have done all KPI Model of Spagobi Only remaining one thing.
My Problem is in Goal Definition Of KPI Model.
If you have any idea about Goal Definition Of KPI Model.
Then Please inform me atonce.
...
0
votes
1answer
196 views
To map a database view with no primary key, in hibernate xml mapping
I have created a view which will be used for fetching the data only(readonly)
View : Grid_View
> My Hibernate hbm file
<hibernate-mapping>
<class name="hibernate.domain.View" ...
0
votes
0answers
35 views
Hibernate annotation conditional one to many
I have 2 tables:
student - stud_id, name
student status - stud_id, status_id, start_date, end_date
I want to get stud information with status where stud_id =1 and end date as null
I am able to ...
1
vote
0answers
92 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 ...
0
votes
1answer
204 views
Many-to-One w/ Composite key- Foreign key must have same number of columns as he referenced PK
Problem Summary
I am trying to map a many-to-one with a composite key. So far I haven't been able to locate another question that helps. I know how to map to a composite key with one-to-one, but it ...
0
votes
0answers
33 views
Is there an easy way to map a CollectionOfElement(Set/List…) property to a single database column?
Normally, I am using the CollectionOfElement annotation to map a collection of embeded object. This will always requires the creation of another table. When the master Entity contains two or more ...
0
votes
1answer
234 views
Runtime exception :Use of @OneToMany or @ManyToMany targeting an unmapped class
pleas can sombody help me?? i am getting this error when i am saving the data in Client.class
Client.class
package com.pojo;
import java.io.Serializable;
import java.util.List;
import ...
0
votes
1answer
87 views
Wrong Join type or missing criteria, multiple tables with one to many
I would like to use the below join in several of my entities, however anytime I try I run into a FK issue. I believe it is because it is using the ID column of the entity to match to the ...
0
votes
0answers
42 views
amount field with decimals in hibernate
I have a SQl with an amount field like,
to_char(ERR_VW.GROSS_AMT,'$999,999,999.99') GROSS_AMT,
But when I execute this thru hibenrate, i get the foll exception
Wrapped exception:
...
0
votes
1answer
79 views
No foreign key constraints in database.!
My organization works on Spring MVC with Hibernate. We always specify foreign key constraints in mapping file, like for person and contactList in Person.hbm.xml
<set name="ContactList">
...
0
votes
1answer
64 views
Hibernate4 XML mapping without POJO null pointer exceptions
I'm getting a null pointer exception with the below mapping xml (without POJO).
a. employee.hmb.xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
...
0
votes
0answers
16 views
Finding the other end of an association at runtime (jpa/hibernate)
Given an association of any kind between 2 jpa entities, and meta data in javax.persistence.metamodel.Attribute (or sub-interface) instances provided by the EntityManagerFactory, is it possible to ...
0
votes
1answer
72 views
Create list table automatic using Hibernate
Is there any way to create single tale using hibernate. I have use hibernate.hbm2ddl.auto but it impacts to full aplication which I don't want. Table which I want to create is basicaly use to handle ...
0
votes
1answer
97 views
What is the best solution to add/delete a many-to-one mapped object with hibernate and struts
Ticket class:
@Entity
@Table(name="tickets")
public class Ticket implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private Long id;
...
0
votes
0answers
217 views
How to write query in hibernate(HQL) to perform 2 joins without mapping?
I want to convert the following query into HQL:
SELECT C.ID, E.DESCRIPTION as STATUS, E1.DESCRIPTION as SUBJECT
FROM CRED C
join CODE_EVN E
ON E.CODE = C.STATUS_CODE
AND E.SUBCODE = ...
1
vote
0answers
94 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();
...
0
votes
0answers
58 views
3 level deep Hibernate Transaction doesn't Cascade until the root Entity when saved updated
I have a situation where I have 3 entities like this in HIBERNATE
public class Client extends AbstractEntity implements Serializable{
@OneToMany(fetch = FetchType.LAZY, cascade={CascadeType.ALL}, ...
0
votes
1answer
247 views
JPA - Hibernate : Map several tables on one column of another
Conserider following table structure
country
=======
id
code
name_id
label
======
id
code
label_value_id
translations
=============
id
ref_id
language
value
Now I need to find a JPA mapping to ...
0
votes
2answers
310 views
HTTP Status 500 - Request processing failed; nested exception is org.hibernate.HibernateException: /hibernate.cfg.xml not found
I am a newbie to Hibernate and Spring and I am getting the above exception while executing the application.
I am trying to fetch the values of a record from the database.
Following is the exception ...
0
votes
1answer
187 views
Hibernate save collection
I'm using Hibernate 4 (with Spring) to persist my object into database.
I have some issue when I try save parent with a collection children.
My Table:
| A | => PK (Composite) [String + Integer]
| ...
0
votes
1answer
103 views
Hibernate, saving a collection property in a single operation
I need a better understating of this behavior of hibernate, and wonder if I can get some light on the matter.
There are two objects, Contact and Action with one to many relation, i.e. one Contact can ...
0
votes
1answer
87 views
Map a column in Hibernate without a property in the Java class
Is it possible to map a database column using Hiberanate, so I can use it in HQL queries, but not map it to an actual property in the mapped class?
I don't need this attribute in my class and would ...
0
votes
4answers
102 views
How can i insert a row using hibernate method?
I am trying to insert a row into a relation table Stock Category.
I am following this example.
http://www.mkyong.com/hibernate/hibernate-many-to-many-example-join-table-extra-column- annotation/
...
1
vote
0answers
131 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 - ...
0
votes
1answer
67 views
hibernate: full join using annotations
I want to perform full outer join on two table using hibernate.
These two tables don't have any foreign key primary key relation.
table 1.
valcode nvarchar2(10)
value number
datemodified date
...
0
votes
3answers
58 views
How i can find the exact error?
I am getting the below error. But i am unable to find what the error is.
Caused by: java.lang.NullPointerException
at ...
0
votes
1answer
53 views
Collections Mapping vs Association mapping
I am very newbie to hibernate. I am learning about Mappings in hibernate in which case i have to go for Collection Mapping and Association Mapping. My confusion is "If an entity or class has ...
0
votes
2answers
468 views
How can I create a foreign key constraint using hibernate annotations?
I am trying to use hibernate annotation for writing a model class for my database tables.
I have two tables each having a primary key User and Question.
@Entity
@Table(name="USER")
public class ...
0
votes
0answers
78 views
convert hibernate component with map to JPA
I am still fairly new to JPA ....I have some existing hibernate mapping which I would like to now convert into JPA annotations. I am trouble with the component part show below:
...
0
votes
1answer
434 views
Hibernate: composite-id with key-many-to-one generating java.lang.stackoverflow error
I've been trying to map the following tables into Hibernate with hbm files:
CREATE TABLE
additional_info
(
info_id SMALLINT,
book_id INT,
desc VARCHAR(32) NULL,
...
0
votes
0answers
75 views
Hibernate list mapping with an intermediate table
I have searched and looked many questions but I couldn't find any feasible solution. I have 4 table.
PROCESS
PROCESS_WORKER
PROCESS_WORKER_LIST
PROCESS_PARAMETER
PROCESS has PROCESS_ID no foreign ...
2
votes
1answer
251 views
Hibernate/Oracle: How to make sequence execute within insert statement instead of two queries
I come from a jdbc background and I decided to teach myself to use hibernate. So I made a table with a sequence:
CREATE TABLE TST_PERSON(
ID NUMBER,
NAME VARCHAR(30),
SURNAME VARCHAR(30)
);
CREATE ...
0
votes
0answers
228 views
Hibernate inserting NULL values for combiner foreign keys
I have the following table structures.
Region table {
`RegionId` int(11) NOT NULL AUTO_INCREMENT,
`RegionName` varchar(45) DEFAULT NULL,
PRIMARY KEY (`RegionId`) }
Client table {
`RegionId` int(11) ...
0
votes
1answer
172 views
hibernate: one-to-many not loading all entities but only one
I am relatively new and trying to load child entities using one-to-many mappings. But, during initializing process, I see only one entity being loaded. The child table associated has 3 more rows which ...
0
votes
0answers
12 views
How can we log all the details into 1 AduitLog table using Hibernate Envers
I want to log username,entity,action,timestamp into 1 AuditLog table from different tables.
will Hibernate envers create 1 table to log all the details.
I'm using spring,Hibernate.
can anyone suggest ...
0
votes
0answers
137 views
incorrect update behaviour in Hibernate with dynamic-update, select-before-update
i try be specific to my issue
I trying update specific columns in Entity in this flow:
i click on input field(telephone) value >> change that value >> press Enter >> ajaxListener call method for ...
0
votes
1answer
89 views
Error while integrating the hibernateDAO and spring
i m having problem on getting the session object on my dao layer i have integrated my hibernate DAO with spring but i don't able to figure out the problem this is my errors
8 Mar, 2013 5:05:33 ...
0
votes
1answer
152 views
Confusing about dynamic-update and select-before-update in detached object in HIbernate
Hi i litle bit confused about this what in typed in title, becasue i work with this first time,
Ok right to the point
i have Dealer mapping and DealerData both in bi-direction
...
0
votes
1answer
102 views
idBag Generator Class Cast Exception
I've been trying to get an idbag working in hibernate. I been trying it against a MySql DB and a HSQLDB and I have also tried a couple different versions of Hibernate. Hibernate 4 and Hibernate 3 ...
0
votes
2answers
97 views
How update one specific property to database,without overwrite to NULL the rest properties
i want update to databgase one of properties for UserData which have(name,street,city,etc)
so:
Relationship & DB properties:
This UserData have a bi-directional relationship with his User where ...
0
votes
2answers
279 views
How modify hibernate hbm.xml to get rid of - org.hibernate.TransientObjectException: object references an unsaved transient instance
i will be specific as i can,so i want just ask for litle help with modification of this hbm.xml file
I have this file in my hibernate mappings
<hibernate-mapping>
<class ...
0
votes
2answers
206 views
Difference between EntityManagerFactory and SessionFactory? [duplicate]
I am new to Hibernate and JPA .Right now I am using EntityManagerFactory Instance to create EntityManager then I have UnWrap this EntityManager into Session using
entityManager = ...
4
votes
1answer
127 views
Length of primary key for Long data type in Java (and Hibernate)?
log(2^32) / log(10) =~ 9.63295986126
log(10^0.63295986126) / log(2) =~ 2.10264714605 > 2 bit
log(2^64) / log(10) =~ 19.2659197225
log(10^0.2659197225) / log(2) =~ 0.883366197155 < 2 bit
As ...
2
votes
1answer
53 views
How to update child when parent is deleted
my requirement is when i delete the parent ,child should not be deleted but instead of deleting child,one of the child column department_ID which is foreign key must be update with some value , say ...
6
votes
2answers
269 views
Hibernate insert query
During insertion in hibernate query i'm passing some fields as table class objects which i've mapped to corresponding tables, The query works fine but the query is becoming too large because each of ...


