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
74 views

Spring LocalContainerEntityManagerFactoryBean scanForPackages and Hibernate package-level type definitions

In Spring 3.1 and higher the LocalContainerEntityManagerFactoryBean is supposed to be able to configure the JPA EntityManagerFactory without a persistence.xml. The configuration is included in the ...
0
votes
1answer
119 views

Fetch data from table using hibernate with fetch=FetchType.LAZY

I'm trying to get all user's emails from table. Entity user: @Entity @Table(name = "tbl_User") public class User { @Expose @Id @GeneratedValue ...
0
votes
1answer
56 views

Hibernate mappings not found when deployed to Oracle app server?

I'm having an issue with Hibernate resources not being found when deployed within an jar file on Oracle application server. I have some hibernate mapping files defined in LocalSessionFactoryBean as ...
0
votes
1answer
101 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
86 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 ...
1
vote
0answers
66 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 ...
1
vote
1answer
158 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 ...
1
vote
1answer
317 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
2answers
151 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
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
157 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
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
1answer
51 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[] ...
-2
votes
3answers
390 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: ...
0
votes
1answer
462 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 ...
1
vote
1answer
284 views

How to create Hibernate Pojo's and hbm files

I have two tables 1) test_prefixmaster(CARDNO(Primary key),Name,Department) 2)test_prefixtransactions(CARDNO(FK),PresentDate) I want to develop an Employee absent report between two given dates ...
1
vote
2answers
393 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
1answer
120 views

Mapping Collection of basic types with hibernate

I'm trying to persist a List, however I'm getting this error org.hibernate.MappingException: Could not determine type for: java.util.List, at table: Person, for columns: ...
2
votes
0answers
174 views

Transaction management with Spring and hibernate, using isolation_serializable

I am using Spring transaction management to control a application with hibernate, it uses two instance of threads to access concurrency database and modify one table. It is ensuring that the values ...
0
votes
0answers
689 views

No identifier specified for entity.. exception .. spring and jpa [closed]

I keep getting the following exception: org.hibernate.AnnotationException: No identifier specified for entity: My entity is as follows:.. I have read up other posts, and I seem to be doing ...
2
votes
1answer
351 views

Can I load attribute values of a Hibernate mapping file from a properties file?

Does Hibernate or the combination of Spring Framework and Hibernate (I'm working on a Java web app which uses Spring 2.5 and Hibernate 3.2) offer any mechanism for loading attribute values in ...
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
0answers
145 views

When using Eclipse RCP, why do I get “org.hibernate.hql.internal.ast.QuerySyntaxException: Class is not mapped”

I have a small Spring / JPA application, built with Maven, that offers a data access service for some data. this application works with a few other applications by including it as a dependency. I am ...
2
votes
1answer
429 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 ...
2
votes
1answer
939 views

Hibernate: Migrating from mapping to annotations - is it possible to mix hbm and annotation?

I'm currently migrating my project from Hibernate HBM Mappings to Annotations. Everything was easy as far as i dealt with small classes. But I have same huge classes and i try to mix both mapping and ...
0
votes
1answer
572 views

Hibernate Validator not found: ignoring

when i start the tomcat , i have this log to my console Hibernate Validator not found: ignoring Building new Hibernate SessionFactory I making the more research , i don't win the good answer , ...
0
votes
0answers
267 views

org.hibernate.PropertyNotFoundException for DTO

I'm running a query that will populate a drop down list, and found that it runs much faster if i only select a few fields. A coworker showed me how to use a DTO in hibernate to make the code very ...
1
vote
3answers
2k views

org.hibernate.MappingException: No Dialect mapping for JDBC type: -1

I am getting org.hibernate.MappingException: No Dialect mapping for JDBC type: -1 error while fetching row from database. ERROR details exception ...
1
vote
3answers
151 views

stuck while loading JPA entity using ID,getting LazyInitializationException

again i stuck in following error : can anybody help me out..?? I am having one JPA entity say ABC In that ABC,id is a primary key of data type long. now i am accessing loading this class using ...
0
votes
1answer
94 views

Spring Bean Extensions

I have a Spring MVC project with a generic application context xml file. This file defines the generic configuration of my applciation such as the base property file for i18n and data source to ...
4
votes
1answer
3k views

Many to Many Hibernate Mapping for additional property in the join table

i need a many to many hibernate mapping needed 3 joins.i try to find out a solution without intermediate entity like LecturerCourse. i have a many to many relation in my database between my lecturer ...
0
votes
1answer
2k views

Hibernate many-to-one foreign key annotation mapping

I use Hibernate 4 with Spring 3.1 and I have a problem with foreign key constraints which are generated from this mapping. @Entity @Inheritance(strategy = InheritanceType.TABLE_PER_CLASS) public ...
1
vote
2answers
2k views

Spring Hibernate Class mapping issue

I am just working through mkyong tutorials . And upgrading a tutorial to use annotations of Spring3 and hibernate 3.6.9. Older version works but with my modification I am getting this error ...
0
votes
1answer
1k views

Error testing DAOs: sun.reflect.generics.reflectiveObjects.TypeVariableImpl cannot be cast to java.lang.Class

I am very new to Spring + Hibernate, and I am running tests to see if my DAOs are working. I get the following error which upon searching in Google yields a lot of different answers (mostly of typos, ...
0
votes
2answers
2k views

Hibernate many to one foreign key not getting set

I have a fairly straightforward one-to-many relationship [SampleAliasMask] has many [SampleAliasMaskPart] My problem is that when I persist a new instance of SampleAliasMask with collection parts ...
0
votes
2answers
337 views

Understanding flow Spring Hibernate Example

I am building a small Application of Spring,Spring MVC & Hibernate by taking reference from http://www.vaannila.com/spring/spring-hibernate-integration-1.html There are two methods defined: -> ...
0
votes
2answers
638 views

Spring + Hibernate Session Factory: Mapping File Directory Inside a JAR

I have web project based on Hibernate and Spring (programmatic configuration). The Hibernate mappings are provided in a package which is archived in a JAR. When it comes to initialize the session ...
1
vote
1answer
328 views

Insert data in two mapped tables in spring

I have 2 table user and userprofile mapped with each other. In User.java getter method for userprofile is : @OneToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY, mappedBy = "user") public ...
0
votes
1answer
468 views

HibernateTemplate.find returns list of DefaultElement instead of Hibernate Entity

Why does the following part of code produces "java.lang.ClassCastException: org.dom4j.tree.DefaultElement cannot be cast to cc.co.sqeezer.model.Registration" List list = ...
0
votes
1answer
725 views

One-to-many relationship with Hibernate

I'm using Hibernate with Spring and Hibernate return this error: Caused by: java.sql.BatchUpdateException: Column 'ID_TAREA_FK' cannot be null I have two classes public class Tarea { private ...
0
votes
1answer
52 views

I need to carry forward the primary table's primary key to a foreign key field in dependent table

I have 2 entities Customer and address please find the code below, I have omitted boiler plate code for simplicity. public class Customer implements java.io.Serializable { private static final ...
1
vote
1answer
1k views

spring and hibernate integration with annotation causes PojoEntityTuplizer

how can i solve this exception? Exception: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in class path resource ...
1
vote
1answer
9k views

org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role (Hibernate + Spring)

I have a SpringMVC+Hibernate web application with the following files: applicationContext.xml <bean id="dataSource" destroy-method="close" ...
0
votes
1answer
158 views

Criteria listing query with restriction on sub entity non primary key issue

I want to use hibernate criteria with restriction on sub entity non key field for listing objects. criteria.add(Restrictions.eq("template.orientation", orientation)); where "template.orientation" is ...
1
vote
1answer
649 views

Invalid object name 'ACCOUNT_orders'? Spring-MVC Hibernate with annotation question

I am new to Hibernate. I have Order and Account table in DB, CREATE TABLE [dbo].[ORDERS]( [PRICE] [decimal](12, 2) NULL, [ORDERID] [int] IDENTITY(0,1) NOT NULL, [ACCOUNT_ACCOUNTID] [int] ...
0
votes
1answer
410 views

Hibernate spring: multiple datasources with many to many?

I know it's possible to use multiple sessionfactories but since I have a many to many relationship where one of the tables is in another schema(and it's unlikely the first schema user will get the ...
1
vote
1answer
3k views

Retrieve data from multiple tables using Hibernate

How can i fetch data from multiple tables in a database (mysql) using hibernate... Can any one help me out in this regard... a sample example will be of great help, if possible. Thanks. Uday.
0
votes
0answers
240 views

Hibernate not returning all results after few Queries

I'm running into a strange problem using hibernate with spring. The query FROM com.vo.Session s WHERE s.sussion.program.id=? AND s.student.userId=? ORDER by s.sussion.scheduledStartTime ...
0
votes
3answers
2k views

Autocommit and Spring Declarative Transactions

I have a single service method annotated with Propagation.Required. It performs three separate operations . Insert to table 1 from table z if no records are in table 1 Insert/Update table 1 as per ...

1 2