Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping.
0
votes
0answers
4 views
Alternative to sharing hibernate session between threads
I am working with Spring 3.0.7 / Hibernate 3.5.0.
I have some code that works with hibernate entity. It works ok. The problem occurs, when I try to make integration test for this code. Below is the ...
0
votes
0answers
4 views
JPA products DB model design
I need to create a products DB. My products will have common attributes, such as price, description, brand... and specific ones, depending on their category (notebooks will have display size, ram, cpu ...
0
votes
0answers
2 views
nested list always return all in hibernate Please help me
here is my .xml class that describe relation between both table
--------Parent Table Mapping-----------
<class name="Att" table="ATT" >
<id name="periodNo" type="int">
...
1
vote
0answers
14 views
WiFi conflicting with local mysql connection (Java/Spring)
I'm using java/spring to connect to a local mysql database and run some integration tests. Sometimes I get Hibernate errors saying that a connection cannot be established. I've noticed this only ...
2
votes
1answer
20 views
best practice to synchronize database changes with hibernate mapping file
Assuming an existing application which deals with lets say 20+ tables, needs to be rewritten using java/jpa/hibernate and if all the tables already existed, is it the usual/best practice to use ...
0
votes
1answer
13 views
No hibernate session when bootstrapping data with multiple databases in grails
i have trouble to save domain class objects into dbs other then the default dataSource. it should be said that I can read from the log database, but can not save (UserLog.list() works). when i run the ...
0
votes
1answer
13 views
javax.persistence.PersistenceException: No Persistence provider for EntityManager named
I'm trying to set up a simple jpa 2.0 project by following the information provided by my teacher's documentation . I've been on this for hours now, but no matter what I do I always get this exception ...
0
votes
0answers
11 views
Work with database using Hibernate from JSP
Hi guys,
I use:
Java EE 6
Tomcat 7
Hibernate 4.1.10.Final
Mysql-connector 5.1.10
Mysql 5.6.10
It's my first web-application with Hibernate. I want to add String value to my database using ...
0
votes
1answer
13 views
Exception in thread “main” org.hibernate.MappingException: invalid configuration
Hi Iam trying to run my hiberanate application i am getting the Hibernate Exception.
my hibernate.cfg.xml file is
<?xml version='1.0' encoding='UTF-8'?>
<session-factory>
...
1
vote
0answers
14 views
Spring Data JPA + Hibernate: How do I use a repository on abstract super class for object retrieval?
I am asking as a follow up to this question. I am doing the exact same thing and it does not work. The only difference is that I do not set my classes as implementing the Serializable interface, but I ...
0
votes
1answer
15 views
Hibernate: bi-directional mapping OneToMany does not work
I have three classes as following:
import java.sql.Timestamp;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import ...
1
vote
0answers
19 views
Can't use Hibernate java.lang.ClassNotFoundException: org.hibernate.util.DTDEntityResolver
I try to launch simple login application on GlassFish server. I use JSF and Hibernate. But there are some issues. Could anyone help me?
Here is stack trace:
INFO: HHH000412: Hibernate Core ...
0
votes
0answers
28 views
java.lang.NoSuchMethodError: org.springframework.beans.factory.annotation.InjectionMetadata: method <init>()V not found
I keep getting this error when trying to deploy a web application in Eclipse Juno. I am very new to Spring MVC. I am just following a tutorial on this site - ViralPatel Spring MVC-Hibernate
HTTP ...
1
vote
0answers
17 views
Hibernate Criteria.ALIAS_TO_ENTITY_MAP to ArrayList Student missing
I have one to many relationship I need to fetch eager the associate table as well filters the 2 tables using criteria. Here is my code..
public ArrayList<Student>getListOfStudents() {
Session ...
1
vote
1answer
21 views
Spring Hibernate - saving a one to many association
I would like to save a one to many relationship into the database. In this case one parent and two children.
DAO code
public void createMatch() {
UserEntity checker = new UserEntity();
...
0
votes
0answers
17 views
Hibernate query result casting
I have a DTO like shown below which having some variables as DTO of other class like shown below:
public class XYZDto implements Serializable {
/**
*
*/
private static final long ...
0
votes
0answers
11 views
not-null error although generated value
I am using hibernate 3.6.3 and have a column in my bean which is annotated by one of the following ways (tried both and none worked):
@GeneratedValue(strategy = GenerationType.AUTO)
or
...
0
votes
1answer
13 views
hibernate mapping confusion
Could someone explain me why this doesn't work? I want to have a table that contains informations about two users who played with each other. This doesn't work.
Public class History implements ...
0
votes
1answer
24 views
how to specify hibernate select query with where clause and ? placeholders
Here is my code sample:
String hqlquery="select stName,stCode from StGroup where stName=?";
PreparedStatement ps=con.prepareStatement(hqlquery);
ps.setString(1,stname);//here stname am passing ...
0
votes
0answers
23 views
jpa part of composite primary key also part of composite foreign key
I'm having problems mapping thwo relations between three of my JPA entities. First of all, I show you the database tables involved:
Ciclista
idciclista (PK)
(rest of fields...)
Prueba
...
0
votes
0answers
15 views
Error in concurrent reading/saving of object in Transactional method
Facing problem in saving data with concurrent request thread. detail are as below:
Spring 3.0.5
Tomcat 1.6
Hibernate 3
Simulating the issue through sample application:
DB Detail:
user
...
0
votes
0answers
16 views
Compilation failure Failure executing javac, but could not parse the error: The system cannot find the path specified
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 ...
0
votes
0answers
12 views
Date insert to sqlite db using hibernate
For my learning purpose I have created a simple application using Sqlite DB along with Hibernate and Struts 2. In that I am trying to insert a row to a table - User(id,mydate). The insertion is ...
0
votes
0answers
15 views
HQL where clause 'greater than' with jadira PersistentDateTimeWithZone
I'm using jadira PersistentDateTimeWithZone to store a joda DateTime with timezone. It all works as expected, except for searching for dates using ">=" - it compares the time timezone string in the ...
0
votes
1answer
8 views
I can't get an Object from base using SQL natif Hibernate
I tried to follow an example of a book hibernate Chapter 17 SQL native
so I summary, I would return an object XXX with a SQL query using Hibernate ..
Here is my example
@Override
public Composant ...
0
votes
1answer
21 views
JPA/hibernate - Cannot add or update a child row: a foreign key constraint fails. Can not insert null
I'am trying to implement manyToMany relationship. It works fine when getting data from database into entities but fails when trying to insert new value into join table.
I have three tables: job, ...
0
votes
0answers
8 views
Hibernate Audit tables LOB field - ORA-24816:Expanded non LONG bind data after actual LONG or LOB column
I'm using hibernate version 4.2.1.Final with oracle10g, I am getting ORA-24816 after updating an entity that has audited lob column.
I see there is a fix for this error in here
...
1
vote
2answers
24 views
Id generation issue with Hibernate, liquibase and hsqldb
I've created a table using liquibase:
<createTable tableName="employees">
<column name="id" type="bigint">
<constraints primaryKey="true" nullable="false"/>
...
0
votes
1answer
16 views
Tomcat hangs if C3P0 can't get a database connection
I've an application that uses Spring+Hibernate+C3P0 as the connection pool. If I start the application and the database is down, Tomcat hangs for a long log time withouth giving any feedback. Is there ...
0
votes
1answer
23 views
Reading already loaded properties in a jsp?
My JSP pages need to display different information depending on which environment they're in (dev, production, sandbox, etc). I want to have a properties file for each of these environments that ...
0
votes
0answers
15 views
convert jdbc base project to hibernate project
how works connection pool in hibernate.when hibernate create new connection and add it to_
connection pool?i have project that use jdbc and i want convert it to hibernate.tables are converted and i ...
0
votes
1answer
21 views
hibernate HQL Query delet on join
i want to perform delete on join of two tables in HQL
how to do this in HQL...
can you suggest a simple example.??
DELETE
FROM tab1.col1
JOIN tab2.col2
ON tab1.col = tab2.col
WHERE .... = ......
0
votes
3answers
24 views
convert String to Clob and vice versa in Hibernate
Suppose that I have a Class:
class EventTransaction {
.....
private Clob dataXML;
public Clob getDataXML() {
return dataXML;
}
public void setDataXML(Clob dataXML) {
...
0
votes
0answers
9 views
Hibernate ForeignKey to Specific Revision Number
I want to have a sort of entities in Hibernate that besided normal id value (auto_incremented) will also have a field showing current version (some entities are audited [Envers]). This field I would ...
0
votes
0answers
29 views
Select Query Cause DeadLock
We keep getting deadlock errors in our production environment. The error message as below in the log file
2013-04-24 01:44:28,893 ERROR [gk.lvl1Executor-1] - Transaction (Process ID 68) was ...
0
votes
0answers
11 views
Sample maven pom for the following: java ee6, mysql, hibernate, jboss7?
I apologize if this is so basic, but I in all earnestness can not find a sample pom.xml that will get me up and running starting a java ee 6 application.
I need to use the following for my app:
...
1
vote
0answers
13 views
JPA 2.0 / Hibernate - why hibernate issue select count (*) query before delete
I am using spring-data with hibernate. I have a bidirectional mapping as follow:
public class Student {
...
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, orphanRemoval = true, ...
0
votes
1answer
19 views
Hibernate does not create Table in the database
I am using PostgreSQL and I am trying to run a simple Hibernate application, in particular the application decribed in the page. My hibernate.cfg.xml file is:
<?xml version="1.0" ...
0
votes
2answers
47 views
How to enter data in two tables at one time in spring mvc hibernate
Article class:
@Entity
@Table(name = "imei")
public class Article {
@Id
//@GeneratedValue
@Column(name = "imei1",nullable = false)
private Long imeiNo;
@Column(name = ...
0
votes
1answer
34 views
print all exception locations in java
I have an exception in Java/GWT/Hibernate. The exception is printed in the console in this form:
org.hibernate.exception.SQLGrammarException: could not execute query
at ...
0
votes
1answer
33 views
HibernateTemplate returning null
Hi! here I am trying to use hibernateTemplate in the dao layer, earlier I have working with sessionfactory for retrieving and it worked fine but now I need to implement hibernateTemplate, When I am ...
0
votes
0answers
30 views
Grails StaleObjectException during domain object save
I have already created a whole web application. I have started some load tests and sometimes I got StaleObjectException.
I have interaction with database in several places and I would like not to ...
0
votes
1answer
25 views
Use of Cascade in ManyToOne relation
Is it appropriate to use Cascade in both sides of a ManyToOne association in Hibernate Entities? To make my question more concrete, let 's assume that someone has the following related Entities:
...
0
votes
2answers
24 views
Many-to-many with additional attribute and without mapping many-to-many as separate entity
the below example works fine, hovewer I would like you to check whether this is good approach, as I haven't had such requirement before and I am curious how it should be done.
I have three tables: ...
0
votes
1answer
18 views
java.sql.SQLRecoverableException: Closed Resultset: next
We are migrating our application from Hibernate deault pool to C3P0.
Our application was running correctly in default pool configuration. but with C3P0 it displays below exception.
...
0
votes
1answer
22 views
JPA/Hibernate Difference MappedSuperclass and Entity Abstract Class
I would like to know what is the difference between MappedSuperclass and Entity Abstract Class when one wants to derive from a super class in Hibernate. I know that Hibernate does not create a Table ...
0
votes
1answer
25 views
Hibernate asks for collections using multiple selects instead of one, how to change it?
I am using HIbernate 3, Oracle and Java. I have an Employee class and this mapping:
<set name="meetings" table="EMPLOYEE_MEETING" inverse="false" lazy="false" fetch="select" cascade="all" >
...
1
vote
0answers
30 views
executeUpdate() hibernate and spring return to controller number of rows
I have a problem with return affected rows in Springmvc/Hibernate project(MySQL databse).
This is my DAO file, which must return the size of affected rows in my database.
When i execute this method ...
0
votes
0answers
25 views
Hibernate override joined inheritance type
i have a simple object model which i want to mix inheritance strategies (single table and joined)
abstract class A
class B extends A
class C extends A
I want two tables A and B (C entity will be on ...
1
vote
1answer
11 views
org.hibernate.InvalidMappingException: Could not parse mapping document from resource *.hbm.xml
I know this question has been asked a lot, but I read almost every one of them but non of them helped me.
I'm writing an eclipse maven project with hibernate and I'm getting this error:
...

