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

0
votes
2answers
228 views

Deleting issue on parent to child relationship using hibernate annotation

Requirement is when parent is deleted all related child must be deleted .I am facing problem on deletion of child when parent is deleted using hibernate annotation my parent table is Employee and ...
0
votes
0answers
156 views

Mapping a table with only foreign keys in hibernate

I am new to hibernate and i want to map a table having only foreign keys using xml file. I have 3 tables 1.UserInfo(for user details with a primary key) 2.AuthorInfo(containing author details with a ...
0
votes
3answers
137 views

Unknown column username in 'where clause'

I got this error when I try to select on table that one of its column is foreign key: select count(*) from cards where username = 'name'; I am doing it through java jdbc so I think something with ...
0
votes
1answer
79 views

Hibernate Bidirectional ManyToMany delete issue

In my project I have entities for users and companies: @Entity @Table(name = "users") public class UserDetails { @Id @GeneratedValue @Column(name = "user_id") private int id; ...
1
vote
1answer
68 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" ...
0
votes
1answer
23 views

In hibernate how to set status for various table objects

I have two objects, Customer and Store. I would like a user (from a user table) to be able to specify a customer or store as "preferred". I would then be able to see a list of users who prefer ...
0
votes
0answers
139 views

Using AnnotationConfiguration in Hibernate 3.6+ version

I am facing issue with Annotation configuration When i use sessionFactory = new AnnotationConfiguration().configure("/conn/hibernate.cfg.xml").addAnnotatedClass(User.class).buildSessionFactory(); ...
0
votes
1answer
132 views

Add mapping resource from other JAR

I have a jar file which has some mapping files I want to add then as mapping resource in hibernate.cfg.xml for that I added JAR in org.hibernate.cfg.Configuration.. Configuration cfg=new ...
0
votes
2answers
120 views

persistencecontext makes queries empty

I recently changed my JPA design for that : persistence.xml <?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" ...
0
votes
2answers
83 views

what is use of DOCTYPE tag in hibernate mapping files?

I am new to hibernate and i am using it with java. I have made hibernate mapping file for my Entity and tested it on local machine and it worked fine. However when I was running on server I got error ...
0
votes
0answers
186 views

hibernate tool eclipse how to generate flat class (Spring MVC3)

I have to generate java class from Sql Server DB. I'm using Hibernate Tool. I don't wont create classes for foreign-key. I find I can write reveng.xml like this: <?xml version="1.0" ...
1
vote
2answers
243 views

hibernate MappingException: Could not determine type for: java.util.Set

I'm new to Java and Hibernate (although I've familiar with the Entity Framework so understand a lot of the concepts) All I want to do is create a Table OrganisationNode which has the following ...
0
votes
0answers
279 views

Hibernate annotations many to many inverse relationship with eager fetch

Hi there, i have a model of user and role with many to many relationship as follows @Entity @Table(name = "USER") @Indexed @XmlRootElement public class User extends BaseObject ...
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 ...
0
votes
2answers
75 views

Saving an object to table that has relationship with another table using hibernate

I have 2 tables. Student (id,name,class_id)<br> class(id,name) student relates to class table through class_id after using hibernate and generate into object, I'll have 2 objects Student { ...
0
votes
2answers
281 views

I have the FetchType.LAZY and hibernate objects are still loaded

I have this relation in my "Persona" entity @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "persona") private Empleado empleado; In my "Empleado" entity i have this ...
0
votes
1answer
88 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
0answers
27 views

hibernate associate an object with hierarchy of objects

I have a hierarchy of objects in hibernate. I have Customers and Customers have Locations. I would like to associate an Alert object with either a customer or location. How would I represent this ...
0
votes
0answers
70 views

Unable to prevent Hibernate from opening too many connections

I'm using: Hibernate 3.6.8 with mySQL, Tomcat 6, JDBC connection pooling I've run into a problem where Hibernate is opening a large number of connections, which eventually causes my web app to not ...
1
vote
1answer
424 views

Hibernate: org.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session

I wonder why this exception happens although it's assured by Hibernate get/query methods to retrieve objects that are already available inside the Hibernate session in case those objects are required ...
0
votes
2answers
159 views

Avoid Circular Dependency

I am developing a travel management application. The design in question is something like following : Each person in a tour is designated as a Traveler. Each Traveler has a Passport. Now, a Traveler ...
0
votes
0answers
38 views

custom sql operations on column-level in hibernate

In Hibernate it is possible to override SQL operations on entity-level. There are many examples how to do this. In the Hibernate documentation you can also read that it is possible to override SQL ...
0
votes
0answers
46 views

Persist checkboxes with hibernate

I am playing around a little with hibernate for the first time, and need some advice how things should be done best in a persistence layer. I am persisting some Items (Issues of a bug tracking ...
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 ...
0
votes
1answer
128 views

hibernate named query xml mapping

If i put a <query..> in my Car.hbm.xml the session i get returned from (Session) HibernateUtil.getSessionFactory().getCurrentSession(); is null, if i delete the query from my xml mapping file ...
0
votes
1answer
45 views

Query conversion from db4o to hibernate

I'm currently working on a project to implement an OODB (object oriented database) cache where the requirements are to use a db4o database as the cache and store objects in it. My backend database is ...
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") ...
0
votes
0answers
151 views

hibernate named query with object

I put this in my District.hbm.xml file <sql-query name="getCarsPerDistrict"> <return alias="district" class="java.lang.Object"/> <![CDATA[SELECT id, name, district_code, ...
1
vote
1answer
523 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
0answers
27 views

Map (integer integer) mapping in hibernate

How would you annotate this bean to be mapped in hibernate ? @Entity public class PerformanceValues implements Serializable{ private static final long serialVersionUID = 1234850675335166109L; ...
0
votes
1answer
505 views

org.hibernate.QueryException: duplicate association path for @ManyToOne Criteria

I have two classes which has a relationship between them. These are com.edfx.adb.persist.Activity: package com.edfx.adb.persist.entity; import java.util.List; import javax.persistence.Column; ...
0
votes
2answers
221 views

Rather than child is deleting its updating ,when parent is deleted

My problem is when i delete the parent, child is not deleted but instead of deleting child ,child is updating.Parent table is Employee and child table is EmployeeProject there is one-to-many relation ...
0
votes
2answers
105 views

While deleting the parent ,child is updating rather than deleting

My problem is that when i am deleting the parent child is not deleted instead of deleting the child ,child is updating this is the output Hibernate: update employee_project set employeeNumber=null ...
0
votes
1answer
84 views

Hibernate multiple many-to-one mappings

I have a job table which has multiple many-to-one mappings. A applicants table which has applicants for a specific job and address table which has multiple places about where this job is posted. I am ...
1
vote
1answer
53 views

OneToMany unidirectional with composit pk on the Many side

I have the following simple example: @Entity public class Profile { @Id private long id; @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY) @JoinColumn(name="profileId", nullable = ...
0
votes
1answer
34 views

Hibernate OneToMany mapping for same table

I have a student table where one student can have many friends. Friend is also a student. So I have added one more table Friends with three columns id, studentid, friendid where studentid and friendid ...
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
152 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
160 views

Pagination is not working when calling MySQL Stored Procedure using Hibernate

I have a MySQL Stored Procedure click here for stored procedure and calling the Procedure using Hibernate Hibernate Code: int ps=5; SQLQuery query=session2.createSQLQuery("CALL ...
0
votes
1answer
241 views

Hibernate.dialect' must be set when no Connection avalable [closed]

Could you please help me or suggest me with where I am going wrong with. I am pulling the Database properties from hibernate.properties and using the keys in hibernate.cfg.xml When I am running this ...
1
vote
1answer
323 views

Hibernate Returning two Pojo's and display the results on jsp using jstl

I have my pojo classes Master: public class Master extends RecordSet{ private String empcode; private String empname; private String dept; public String getEmpcode() { return empcode; } public ...
0
votes
0answers
31 views

Can I configure data source specific “global” hibernate mappings?

I know I can specify global mappings in Config.groovy with grails.gorm.default.mapping = { ... } but, in a project with multiple data sources (Grails >= 2.0.3), is it possible to configure ...
0
votes
1answer
118 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 ...
0
votes
1answer
91 views

Hibernate reverse engineering of a PostgreSQL database

I am having some trouble generating my DAO/POJO code using Hibernate for a PostgreSQL database written using the CamelCase notation. Everything works fine until the code generation time: only my ...
1
vote
2answers
416 views

Hibernate HQL Query with outer join

I would like to ask how to change the OUTER from Informix to HQL query. Currently facing error with unexpected token:outer SQL query: select a.SC_OB_PROFILE_CODE, b.SC_ORIG_SF_GROUP_CODE, ...
0
votes
2answers
155 views

How to write jstl code for Hibernate returning two Entities

I have a Hibernate Code like below which returns single Entity class: SQLQuery query = session.createSQLQuery("select * from Employee"); query.addEntity(Employee.class); ...
1
vote
2answers
255 views

where does …hbm.xml file go?

I am a Hibernate newbie, attempting a small hibernate example with an embedded Derby database. I am developing in eclipse. I am not using Spring or Maven, I am not setting up a web application, I ...
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 ...
0
votes
0answers
159 views

How to write Hibernate mapping for this

domain classes 1, user 2, role 3, group 4, Group Role User Domain private long id, private String userName, private String password, Set<Role> roles = new HashSet<Role>(); ...

1 2 3 4 5 18