Tagged Questions
0
votes
1answer
41 views
Rollback with catched RuntimeException
I clearly need some help about transaction roll back. I'm working on a Spring/JPA/Hibernate application.
For me, RuntimeException even if they are catched, are rolling back the transaction. I deduce ...
1
vote
1answer
187 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
1answer
182 views
Why is this code throwing a ClassCastException in netbeans while its runing fine in eclipse
//Runtime Exception
Runtime exception occurs when following code is called in netbeans. works fine in eclipse.
public List<Ticket> findOpenTickets() {
Session session = null;
...
1
vote
2answers
410 views
Can Hibernate data access throw exceptions similar to Spring DeadlockLoserDataAccessException or other TransientDataAccessException?
I'm currently working on a project that uses data access on different databases. Our main database is accessed through Hibernate (either via the Criteria framework, or HQL queries), but we also have ...
0
votes
1answer
352 views
Retry after Spring throws DataAccessException not working
I am facing a very peculiar situation. I am using hibernate template with spring 3.0.5 for DB operations. When I try to insert a User model the first time, a DataAccessException is thrown, which I ...