Tagged Questions
2
votes
2answers
38 views
GenericJDBCException catched by wrong part of the try/catch block
I have this block of code:
} catch (HibernateException e) {
loginAnswer = new LoginCustomerAreaAnswer(999);
//This function use the error code save inside loginAnswer
...
0
votes
0answers
20 views
Got unexpected value in TDS response at offset
Am using Java, hibernate, sqlserver 2008 R2, Jboss ,
getting this exception,
WARNING [com.microsoft.sqlserver.jdbc.internals.TDS.Reader] (pool-26-thread-7) ConnectionID:4 TDS header contained ...
0
votes
1answer
29 views
Getting org.hibernate.util.JDBCExceptionReporter: Connection reset by peer: socket write error
I'm using Hibernate, Spring, JBOSS and Microsoft SQL Server 2008 R2. At seemingly random times I get an error
ERROR [http-0.0.0.0-8080-7] org.hibernate.util.JDBCExceptionReporter ...
0
votes
1answer
35 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
0answers
24 views
Hibernate exception Collection is not associated with any session
So, I have an entity, say Entity1 which is in join with another entity, Entity2. Entity2 in turn, is in join with another entity, Enitity3.
I have Entity1.entity2 join as OneToMany therefore returns ...
3
votes
2answers
119 views
How to override default Spring JPA exception translator behavior?
I don't know if this approach is the best or not. But I have a requirement where I need to handle Spring JPA repository (DAO layer) exception. Handle in the sense may be propogate it to UI or may be ...
0
votes
2answers
80 views
How to rollback Spring Transaction when an Exception is thrown
I am using spring 3.0.5 and hibernate 3.6. In my project there is a scenario where i have to rollback transaction of any exception in thrown or error occurs. This the sample code, Everything works ...
0
votes
1answer
50 views
unable to set the inherited enum values in hibernate
I have a enum
public enum Status {
ACTIVE(1), INACTIVE(0);
private int value;
private Status(int value) {
this.value = value;
}
}
and a super class
@MappedSuperclass
public class ...
0
votes
0answers
36 views
Hibernate merge issue
i'm actually working in a project using hibernate and spring and i have a problem with an hibernate Exception "more than one row with the given identifier was found". After research i've learned some ...
0
votes
3answers
61 views
Should we handle exceptions while saving an enitity
When we do a
session.save()
in hiberbate side it might throw different exceptions.Do we need to handle them.Is so how we should do it?
I found two implementations of save() (In SessionImpl and ...
0
votes
1answer
42 views
Is rollback needed after Hibernate exception if clear is used instead
if I have a Hibernate exception during a call to commit. In the catch block, is rollback necessary if clear is used instead?
e.g.
EntityTransaction t = em.getTransaction();
t.begin();
try {
...
...
1
vote
1answer
33 views
Hibernate does not find Entity
I am trying to create two simple Tables with a couple of records in a Postgresql database running a simple Java application and using Hibernate. I have created the entities Employee and Department as ...
0
votes
1answer
30 views
Hibernate Object Detached after a ConstraintViolation on a related entity
I use Spring / JPA / Hibernate. I have a fairly standard Dao and Service layer implementations.
class GenericDao<T> {
public save(T entity) {
if (!entity.isIdSet()) {
...
0
votes
0answers
36 views
WEBLOGIC -> java.sql.SQLException: could not use local transaction commit in a global transaction
java.sql.SQLException: could not use local transaction commit in a global transaction
at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
at ...
0
votes
2answers
69 views
org.hibernate.exception.DataException although is catched
I am working with Hibernate (hibernate3.jar) with and object "Cliente", like this:
public class Cliente {
private nombre;
...
//set and get
}
The "nombre" attribute is mapped as:
...
0
votes
1answer
236 views
Could not initialize class org.hibernate.validator.engine.ConfigurationImpl in spring MVC?
When I place hibernate-validator-4.0.2.GA.jar to WEB-INF/lib and
start my app, I'm getting a strange error as
org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
1
vote
1answer
135 views
how to handle exceptions in a project of Struts + Spring + Hibernate
I want to know what is the better approach for handling exception.My web project is having Struts-Spring and Hibernate.
An exception can occur either at Struts Action or Biz Layer or at Data Layer. ...
0
votes
1answer
104 views
Hibernate Mapping exception related with foreign key
I have a problem with my Hibernate Mapping. I have three files, each one of them is the mapping of a hibernate class:
Proyectos.hbm.xml: Proyectos class
UnidadesEmpresa.hbm.xml: UnidadesEmpresa ...
0
votes
1answer
925 views
hibernate.exception.GenericJDBCException: Cannot open connection
I am getting this error a lot of times when i am trying to open my application. Please help me understand this stack trace.
Please find the stack trace here:
[3/14/13 23:29:57:016 SGT] 00000029 ...
0
votes
1answer
105 views
Weird Hibernate Error
I'm working on a Java project and I'm confused as to what's happening with a situation I've stumbled upon.
I'm developing on a mac with mac osx mountain lion. I'm using eclipse and have everything ...
1
vote
2answers
194 views
Exception handling in struts2 and hibernate
Suppose that we have developed a website in struts2,hibernate,mysql and we have added few try catch blocks here are there which encloses database calls via hibernate. my question is
1.Inside the ...
0
votes
1answer
121 views
Grails - severe IllegalStateException - Method on class [] was used outside of a Grails application
I'm getting a severe IllegalStateException error on prod environment (stacktrace at the bottom). Locally, on dev everything works fine and I never experienced any problem with that piece of code ...
0
votes
0answers
59 views
Hibernate NonUniqueObjectException a different object with the same identifier value Error
I have an Status Object that has an Address List. I get this error when I try to update an existing Status Object (that has empty null addresses) with new addresses.
Error:
...
0
votes
0answers
124 views
Hibernate Post-Insert Event Unexpected Behavior
I am working with Hibernate 3.5.6 trying to make use of the Post-Insert event listener. I encountered a behavior which seems inconsistent with the notion of post processing an event. I go to commit an ...
0
votes
0answers
338 views
java.lang.NoClassDefFoundError: org/hibernate/cfg/Configuration after modifying XML
My project was working until that point when I tried to set the character encoding to UTF-8.
I added the <property name="hibernate.connection.characterEncoding">utf8</property> line to my ...
-2
votes
2answers
42 views
Hibernate nested obeject- help needed
I am new to hibernate and stuck at a point.
I am trying to save nested object and out of those nested objects i don't want to save one object. How can i achieve this?
When i am running this i am ...
0
votes
1answer
154 views
JPA 2: How to use Map<String , Employee> in OneToMany Relationship between Entities
When I try to use Map in OneToMany Relationship between entities , I face the problem . When I try to insert the data in map there is following exception throw
Exception in thread "main" ...
2
votes
0answers
145 views
EntityManager throws OptimisticLockException when try to delete locked entity in same transaction
Here is my code:
EntityManager em = JPAUtil.createEntityManager();
try {
EntityTransaction tx = em.getTransaction();
try {
//do some stuff here
tx.begin();
...
0
votes
1answer
395 views
Getting No bean named 'sessionFactory' error when using OpenSessionInViewFilter
I am using Hibernate's lazy loading, and after adding OpenSessionInViewFilter to my web.xml I started to get sessionFactory missing exception, even after defining the sessionFactory bean to use.
...
0
votes
2answers
80 views
java.lang.ClassCastException in Hibernate
i have two tables like Doctor and shift Through Hibernate Query Language i select two fields from Doctor table and two fields from Shift table in a single Query
so i am facing a problem to Display ...
0
votes
1answer
267 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
1answer
273 views
SQL Server raiserror instruction does not raise exception in java code
I have a stored procedure, which does several updates/inserts. I call the execution of it using Hibernate from java client. I want this piece of code to raise an exception in java in case if procedure ...
0
votes
2answers
875 views
java.lang.ExceptionInInitializerError in the creation of hibernate configuration
im working on a hibernate project ,and i configured everything.
so , i generated the beans and hbm files.
now , i wrote a test class to test the project(i used the Client class)
when i executed the ...
0
votes
1answer
204 views
BeanCreationException when trying to import application context from another project
So I am trying to learn jsf, maven, spring, and hibernate. I recently got a single web project to take data from the ui, pass it to the managed bean, domain object, and save to the db. But now I want ...
0
votes
1answer
96 views
BeanCreationException spring hibernate jsf
So I have a huge update. I finally got my sessionFactory to initialize and not be null. I still have (hopefully) the last problem.
I am getting the following stacktrace when I go to store the data in ...
0
votes
1answer
593 views
Hibernate: Exception in thread “main” org.hibernate.exception.SQLGrammarException: Unknown column 'DTYPE' in 'field list'
when i try to run my code it generate the follwing exception.
INFO: HHH000397: Using ASTQueryTranslatorFactory
Hibernate: select sequence_next_hi_value from hibernate_sequences where sequence_name = ...
1
vote
1answer
245 views
Can't configure Jasypt + Hibernate
I use Hibernate3 with a MySql DB and am trying to add the Jasypt library to handle encryption of user password.
I configured Jasypt in the hibernate.cfg.xml as follows:
<property ...
0
votes
1answer
154 views
Unable to catch Hibernate Exception upon logon with wrong credentials
I'm making a Java project with Hibernate. This is my code for logging on the database:
1 public static void connect(String username, String password) throws Exception
2 {
3 Configuration ...
0
votes
3answers
467 views
How can I update specific field in database by HibernateTemplate
I want to Update a specific field in the database Persons table by using HibernateTemplate.I am trying to do like this but this not working.
public void updateDate(int Id,Date recievedDate){
...
0
votes
1answer
118 views
How do I make JPA entity manager forget about previous exceptions?
I'm using Hibernate 4.1.0.Final and hibernate-jpa-2.0-api. I'm having a problem whereby once I save an entity that contains an error, repeated saves on other entities give me the same error as what ...
1
vote
1answer
181 views
How to solve this hibernate runtime exception?
I am trying to run following code in eclipse
package com.trial;
import java.sql.*;
import java.io.*;
import org.hibernate.*;
import org.hibernate.cfg.*;
public class AddStudent {
private ...
0
votes
2answers
47 views
Catch an excception in hibernate method
i have a class called LoadDaoHbm.java in which my method is
@Override
@Transactional(propagation = Propagation.MANDATORY)
public int getPackageCount(Load load) {
Session s = ...
0
votes
1answer
45 views
how to handle com.ibm.ejs.cm.portability.DuplicateKeyException
I am getting ibm.ejs.cm.portability.DuplicateKeyException while saving a data Object. It is actually coming when i am trying to insert the same row in the Table and the condition is that i cant avoid ...
0
votes
1answer
3k views
org.hibernate.type.SerializationException: could not deserialize
I'm using two tables by Hibernate and
I dont understand why for particular query I have this problem.
I hope someone recognizes the problem.
I have a table user
@Entity
@Table(name="user")
public ...
2
votes
2answers
196 views
How to Continue bulk inserts when exception occurs
I am using jpa with hibernate I want to insert 100 record in Database, suppose I get exception JDBC batch update in 50th record insertion i need to handling the Exception and I need to persist ...
2
votes
0answers
718 views
Hibernate throws org.hibernate.persister.entity.SingleTableEntityPersister
I am using JBoss AS 7 with H2 database.
I have a standalone application that tries to connect to this database like this.
My config file:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ...
0
votes
1answer
785 views
java.lang.NoClassDefFoundError: org/hibernate/engine/SessionFactoryImplementor from Spring 3.1.2/Hibernate 4.1.7 and Shards 3.0.0.Beta2
I'm trying a simple Hibernate shard example (Yes, odd, 3.0.0.Beta2 released 4 years ago) using Hibernate Core 4.1.7 and Spring 3.1.2 and hit this issue during session factory initialization:
Caused ...
1
vote
0answers
140 views
Netbeans hibernate MS SQL Server 2005 Exception
I am trying to configure Hibernate with NetBeans 7.2 to connect to a MS SQL 2005 server(localhost). Whenever I try to input a query to test at HQL Query0 window I get Exception dialog that says only ...
1
vote
1answer
278 views
How to resolve a TransientObjectException that honestly does not make sense
I am using Hibernate 4.1 and I'm getting the following exception whenever I try and store a list of transient tags that have been added to a collection for an object.
...
1
vote
0answers
115 views
hibernate.objectdeletedexception [closed]
I was developing some code for a portal, and I encountered this problem:
if an admin changes an item on the portal while an user is using it, when the user tries to save that item, the following ...


