Tagged Questions
0
votes
0answers
21 views
child tables are not getting updated when there is no change in parent table in hibernate
I have following mapping
<class name="Entity" table="ENTITY">
<id name="id" column="entity_id" type="long">
<generator ...
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
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
2answers
302 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
102 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 ...
1
vote
1answer
482 views
Error creating bean with name 'entityManagerFactory'+ NoClassDefFoundError: org/hibernate/MappingException
I am trying to create a simple spring MVC project with MySQL, but I am getting some error when trying to connect my project with MySQL database using
hibernate and JPA. But getting below exception:
...
0
votes
2answers
49 views
unknown class in native SQL using Hibernate
I have a bean class which in Not mapped to a database table.
I have used createSqlQuery and addEntity for mapping the result set. but the error is: unknown entity.
I used setResultSetMapping and the ...
0
votes
1answer
264 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 ...
0
votes
2answers
505 views
Error Creating SessionFactory Hibernate in myeclipse reverse engineered database
I'm learning hibernate in myeclipse. I tried to reverse engineer a mysql table and follow the official myeclipse tutorial. All the xml files are generated but writing a simple test programme it gives ...
1
vote
2answers
400 views
How to add Restrictions to Criteria API in Hibernate
I am newbie to Hibernate and Spring. My question is on “ how to add criteria…” in situation like, I have two beans:
1) Language:
public class Language {
private int languageId;
private ...
0
votes
2answers
115 views
mapping a map JPA, hibernate key
How can I map a map?
I have this:
private Map<Integer, Trip> trips = new HashMap<Integer, Trip>();
As mapkey I want the trip id..
The Trip entity is holding the reference to my ...
0
votes
1answer
64 views
hibernate collection mapping - how can I put the collection owner id as foreign key into a collection's element's table?
I have a class Product and a class Part, where every part can only belong to one one product. Each product has a list of its parts, but a part has no reference to its product.
@Entity
@Table (name= ...
0
votes
1answer
80 views
how can update DB using hibernate?
I am working on project which uses jsf 1.X and hibernate, where am new. We are using below code to update_
Shift4DAO dao = Shift4DAO.getInstance();
Session session = ...
0
votes
1answer
292 views
1 to1 relationship causing , Exception :org.hibernate.exception.ConstraintViolationException: Could not execute JDBC batch update
Technologies used: Spring MVC , Hibernate , MySQL DB, Windows 7, NetBeans IDE
My create,read,update operations, work however Im getting an Exception when trying to delete UserAccount & associated ...
0
votes
3answers
746 views
how to handle composite key hibernate
My hbm.xml file is like this:
<hibernate-mapping>
<class name="pojopackage.WordhelperWordusage" table="WORDHELPER_WORDUSAGE" schema="SOZANA">
<composite-id name="id" ...
2
votes
1answer
433 views
Hibernate ManyToOne with @Formula
I have two database tables and would like to set up a many to one relationship between the two using Hibernate.
I did not construct these two tables, but were already made when I started on the ...
0
votes
1answer
76 views
Use of Cascade and Inverse
I read here What is the difference between cascade & inverse in hibernate, what is the use of them? that
"In case of many-to-many relation through intermediary table; "Cascade" says whether ...
1
vote
1answer
555 views
Hibernate : How to do association mapping for composite key in HBM file
Question:There are two tables named specialday and rule.In rule table one column named specialrule refer to specialday table and want to make rule.hbm.xml file in a way so that when i fetch rule ...
0
votes
1answer
87 views
Why do I get a Hibernate NonUniqueObject Exception?
I'm trying to figure out why I am getting this very hard to debug hibernate error and I have narrowed down the triggering behaviour to when I try to save a customer objects which will have a subset ...
2
votes
0answers
345 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 ...
1
vote
1answer
247 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
34 views
How should the mapping done for the many to many relationship in hibernate for this?
First of all i want to tell i am new to hibernate.
i have gone through tutorials such as one-one mapping,one-many mapping etc. but still i have query as,
i have 3 tables as:
Users ...
0
votes
1answer
171 views
jsf 2 and oracle
i am using jsf2 hibernate 4.1.4 and spring3 in my project. but in my defaut.xhtml i can only insert data to oracle. but i cannot see the data in my page. add new customer is done. but data table code ...
0
votes
1answer
266 views
Hibernate 3 createQuery() returning NPE for a basic join - what's wrong?
I'm getting a NPE in createQuery when I try to do a simple many-to-one join using hibernate 3.3.0. I've already elminated possibilities like empty tables and bad entity mappings, nonexistent sessions, ...
0
votes
1answer
327 views
Hibernate SQL DDL script error 150, unable to make foreign key constraints
I’m using hibernate/jpa annotations to auto create/execute DDL scripts.
All my tables are being created except one table “UserAccount” and the foreign key “contraints” on all tables.
When ...
0
votes
1answer
210 views
Changing from views to sql joins in hibernate
I have a domain object
@Entity
@Table (name = "vw_t_bucket")
public class TBucket {
....
@ManyToOne (cascade = { CascadeType.PERSIST, CascadeType.MERGE }, fetch = FetchType.EAGER, targetEntity = ...
0
votes
1answer
390 views
Hibernate MappingException while using annotation @Inheritance with MySql
I'am using Hibernate framework 3.6.10.Final and MySql. I'am getting
Exception in thread "main" org.hibernate.MappingException: Cannot use identity column key generation with mapping for: ...
0
votes
2answers
376 views
Hibernate one-to-one mapping
I'm facing a problem in hibernate one to one mapping. Googled a lot but unable to solve.
Here is database
Following are my model classes.
public class User {
private int userId;
private String ...
1
vote
1answer
476 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",
...
0
votes
1answer
206 views
is mappedBy in hibernate defined as per schema definition or is it defined logically?
I have the following situation:
One Destination can have Many Aliases
Logically: I would like Destination to be the owner of this relationship, since if there was no destination, alias would not ...
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.
...
8
votes
2answers
8k views
Can someone please explain mappedBy in hibernate?
I am new to hibernate and need to use 1-Many and Many-1 relation. It is a bi-directional relationship in my objects, so that I can traverse from either direction. mappedBy is the recommended way to go ...
1
vote
4answers
444 views
how do I add one to many relationship in hibernate?
On the database, I have these two tables:
- Destination:
- idDestination
- name
- Airport:
- idAirport
- idDestination // FK into Destination city
- name
where:
1 Destination(read: city) ...
1
vote
1answer
538 views
Using a JoinTable
I'm trying to do a twitter-like project using Java2EE, and here's a simple view of the database.
Mention, Followers and Following are three JoinTable.
(Note that mentioned,follower,following and ...
1
vote
2answers
2k views
Hibernate mapping multiple classes to one table using hbm.xml
I am fairly new to Hibernate and need some help with hibernate-mapping.
I have 4 different classes which I want to map into one table, of which the primary key consists of attributes from 2 different ...
1
vote
2answers
5k views
org.hibernate.MappingException: Unable to find column with logical name
hi my tables are as follows:
1- medical_company:
medical_company_id foreign key on account_entity table account_entity_id column (not a pk)
column1
column2
column3
2- account_entity:
...
1
vote
2answers
2k views
NonUniqueObjectException: when updating an entity with hibernate
i have three entities:
-Authority , Permission , PermissionCategory
-Desc: authority can contain many permissions, and permission can be in many authorities, and permissionCategory can contain many ...
0
votes
2answers
2k views
Hibernate parent/child relationship. Why is object saved twice?
I am looking into Hibernate's parent/child relationships.
I have 3 entities Employee Customers and Orders.
Their relationship is
Employee 1 <-> N Orders
Customer 1 <-> N Orders
I want ...
0
votes
2answers
538 views
Hibernate: Using collection of complex objects throws exceptions
I am looking into Hibernate and storing collections of complex types. But I run into exception.
I have the following persistent class:
public class Item {
private Long id;
private Set ...
3
votes
2answers
1k views
Hibernate Mapping same Column twice
How can fix this thing
Repeated column in mapping for entity: com.abc.domain.PersonConnect
column: PERSON_ID (should be mapped with insert="false"
update="false")
this is snippet from my hbm ...
4
votes
1answer
1k views
Upgrade of Hibernate from version 3.0 to 3.6
I'm working on a project which uses Hibernate 3.0(released in 2005), though the project itself is only 4 months old. The catch is we have already written millions of lines of code. We realized we are ...
0
votes
1answer
34 views
How to retrieve value of Releation Table's column
i am new to hibernate. currently i am stuck in one problem.
i have no idea how to retrieve the value of relation table column.
senario:
i have three tables.
TableA:
-------
a_id
a_col1
TableB:
...

