0
votes
1answer
19 views

Hibernate Session is closed in spring transaction after calling method second time

First of all I am a beginner in spring.I have created a simple Spring service that has DAO injected and transaction is managed by HibernateTransactionManager of spring, like as below.(And transaction ...
0
votes
1answer
40 views

Creating multiple transactions in a single hibernate session

I have created a Quartz Job which runs in background in my JBoss server and is responsible for updating some statistical data at regular interval (coupled with some database flags) To load and ...
0
votes
0answers
34 views

Hibernate / Spring transaction issue with Infinispan L2 cache

I am trying to use Infinispan as Hibernate L2 cache for an application which use technologies like Tomcat 6, Hibernate 4 and Spring 3.5. The application running in Tomcat and our current transaction ...
0
votes
1answer
42 views

Migrate Hibernate managed C3P0 Pool to Spring Managed

I'm Spring(yfying) my application that uses Hibernate + C3P0 for the connection pool. I'm using a managed hibernate context for specific reasons. I'm using a utility class "HibernateUtil" for ...
0
votes
1answer
52 views

Hibernate & Spring 3 not saving

I am using hibernate 3 and spring 3.0.7, I am trying to get my code to save an entity to the database but it just won't do it. I have tried everything with it but it seems like there is something I ...
0
votes
1answer
58 views

spring hibernate transaction could not commit

I wrote dao in spring as i used to write in struts some think like this @Autowired private SessionFactory sessionFactory; Session session=null; Transaction tx=null; List<Login> ...
0
votes
1answer
37 views

Open Session in View vs @Transactional

I had been using @Transactional annotations in my Service Layer. But to resolve an error due to Lazy Loading in View I had to use Open Session in View Filter. After this, without use of @Transaction ...
0
votes
0answers
37 views

Spring's Transaction manager not committing trancsactions intermittently

I am using spring 3.0.5 + hibernate with declarative transaction management in one of our components and everything seems to be working fine. But intermittently it so happens that one of the ...
1
vote
0answers
24 views

What is the difference between save() method and persist() method in Hibernate?

I found some answers at stackoverflow,it says "persist() also guarantees that it will not execute an INSERT statement if it is called outside of transaction boundaries. This is useful in long-running ...
0
votes
1answer
43 views

Is it mandatory to close transaction each time in Hibernate?

In Hibernate we close Session each time but is it necessary to close transaction each time in Hibernate or only transaction commit is sufficient?
0
votes
0answers
22 views

Hibernate @Transactional annotation for separate Thread

We have two Java projects, one is a webapp using Spring MVC/Hibernate, and the other is an embedded JAR. The webapp starts a Thread, which performs some code in the embedded JAR. Eventually, the JAR ...
0
votes
0answers
17 views

Get active hibernate transactions

We're using AOP in our persistence layer to check for deadlocks and perform different retry strategies. The issue is due to the multi-threading environment, we are encountering hibernate "transaction ...
0
votes
1answer
43 views

@Transactional and HibernateTransactionManager relationship

(very new to Hibernate) Hi all, I have configured an HibernateTransactionManager If I leave the @Transactional without any params, then the vaues set in HibernateTransactionManager are kept, right? ...
0
votes
0answers
15 views

Hibernate persist and obtain only with a session or with a session and transaction

i made an application 1 years ago, and for persist with Hibernate, use it: Session session; public void save(Object o)throws Exception{ try { session = startTransaction(); ...
0
votes
3answers
142 views

Getting “could not initialize proxy - no Session” despite the fact I'm using a @Transactional annotation

I'm using Spring 3.1.1.RELEASE and Hibernate 4.1.0.Final. I'm getting a "could not initialize proxy - no Session" exception, despite the fact I'm wrapping the relevant method call in a @Transactional ...
0
votes
1answer
32 views

Hibernate object tree outside transaction?

I'm implementing a kind of JobProcessor that takes long running jobs. These Jobs use information, basically Page, PageField and PageRelation, that define a tree of pages and each page has its own ...
0
votes
1answer
95 views

Spring JPA Transaction

I am encountering some strange behavior in Spring managed transactions. This a Spring MVC app. I am binding entities directly to the Web tier. I load a persistent entity from the database for edit ...
4
votes
1answer
67 views

Hibernate / MySQL concurrency issue

I get an insanely strange result with Hibernate (4.1.9.Final) and MySQL (14.14 Distrib 5.5.29, InnoDB table): When I persist something to the database using one thread and try to fetch it using ...
1
vote
1answer
166 views

Using AbstractTransactionalJUnit4SpringContextTests with commit halfway through

We want a simple unit test that runs multiple threads - the idea is that the main thread commits a save to the database, then waits for a secondary thread to pick it up. We're finding that the ...
2
votes
3answers
140 views

How to make long-running @Scheduled spring method, hibernate work?

I try to make a Jersey webservice that allows clients to create Jobs. These Jobs are stored in a database, using Hibernate as persistence provider. The jobs will be executed in the background by a ...
1
vote
1answer
55 views

Spring hibernate insert race condition

I am currently having a race issue with Spring Hibernate (transaction by annotation on service and daoImpl classes). Here is what I have encountered: Tables: Device Type: id (serial), name Device: ...
0
votes
1answer
51 views

BeginTransaction Hibernate necessary?

Is it really necessary to start a transaction when you are going to execute only one query, without deleting or updating data? I'm currently using Hibernate 4.1.9 with C3p0 Example, session ...
2
votes
2answers
108 views

Threading issues with Hibernate

I'm experiencing a strange behaviour with Hibernate. I've been banging my head against the wall for a while now, and will award any answer which leads to a solution with a +100 bounty. I have a ...
0
votes
0answers
11 views

can i persist an entity (i.e do a DB write operation) inside my nullSafeSet method

can i persist an entity (i.e do a DB write operation) inside my nullSafeSet method a Hibernate UserType. The autocommit is set to false, and i nee dto achieve this in a user defined transaction.
0
votes
2answers
135 views

spring hibernate manual commit

can somebody help for this? currently i met some problems, i am using spring,jpa,hibernate. here is the problem, when i try to save several objects, and then manually roll back as when solrj return ...
0
votes
2answers
137 views

Hibernate Error - Already have an associated managed connection

I'm randomly receiving this hibernate error, I can't reproduce it. Already have an associated managed connection and the stack trace as follows ... INFO | jvm 1 | 2013/03/31 18:16:20 | ...
1
vote
1answer
371 views

Strange behaviour with @Transactional(propagation=Propagation.REQUIRES_NEW)

Here is my problem : I'm running a batch on a Java EE/Spring/Hibernate application. This batch calls a method1. This method calls a method2 which can throw UserException (a class extending ...
0
votes
1answer
186 views

postgres - find out sql query from transaction id

I am running select * from pg_lock; to get transactions with exclusive locks. Once I know the transaction id that has exclusive lock, how can I find out sql query that is associated with that ...
0
votes
0answers
70 views

Can I set different transaction isolation levels for my jpa queries in JPA

Can I set different transaction isolation levels for my jpa queries in JPA? I understand that JPA/hibernate is by default configured to read_committed. I want to understand if in practical projects ...
2
votes
1answer
90 views

Transaction manager for service method that carries out DB operations on tables from multiple schemas

The application is in Spring + hibernate. It has a process under which mysql tables from 3 schemas get updated. I have different dataSources, sessionFactories and transactionManagers for each schema. ...
1
vote
1answer
71 views

JTA nested transaction lock

Environment: We have an application that is deployed in a JBoss 4.2.3.GA server and which is using Hibernate 3.4 and JTA 1.0. There's an importer which creates or updates certain entities and then ...
0
votes
0answers
45 views

Exception thrown in Hibernate code, is it because of transactions?

Everyone, I have the following code which works on multiple test systems but then fails on the production system with a NullPointerException. Hibernate returns null for an Object that is definitely in ...
0
votes
1answer
87 views

Transaction Required Exception in JPA Spring Hibernate App

I saw many posts in this forum regarding the Transaction required Exception. But none of them resolved the issue. My question is: In my scenerio, my application is working perfectly for some ...
0
votes
1answer
944 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
0answers
81 views

JPA insert fails after 400 (or so) inserts - transaction error

Update: It seems it's failing after one insert, #412, fails a not null constraint at the database level. The transaction is probably rolling itself back. Given this setup, is it possible to get a ...
0
votes
0answers
192 views

MySQL Hibernate delete bulk joined-subclass , temporary table locks the table

I am using PlayFramework (1.2.5) , there is one class MedicalLog extends class Log , as follows : @Entity @Inheritance(strategy=InheritanceType.JOINED) public class Log extends Model { ... } and ...
0
votes
2answers
135 views

Hibernate error in Liferay

I am using liferay and here are my classes and methods in them: EmployeeLocalServiceImpl.java public class EmployeeLocalServiceImpl extends EmployeeLocalServiceBaseImpl { /* * NOTE FOR ...
0
votes
0answers
80 views

TransactionManager is null

i cant get @Transactional to work. i have in applicationContext.xml: <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> ...
0
votes
0answers
39 views

Using @TableGenerator with Non-JPA

Abstract I'm using JPA with @TableGenerator for Ids. I have to make a fine method for sharing the mechanism for JDBC or PHP. Entity @Entity @Table(name = "T1") public class T1 { @Id ...
0
votes
3answers
155 views

insert into table using hibernate @Transactional

I am using @Transactional annotation to test inserting some data into one of the tables through a Spring application. My test succeeds, but I do not see any data being inserted into the table. Here ...
0
votes
0answers
94 views

Exception thrown in Repository causing UnexpectedRollbackException error in parent / Service transaction

I have a BaseRepository: @Transactional(propagation = Propagation.MANDATORY) public final T save(final T entity) throws RepositoryException { try { getHibernateTemplate().save(entity); ...
1
vote
1answer
88 views

hibernate delete doesn't work

I'm experiencing a weird situation, where hibernate delete works on all records but not on id=1. At first, I was using getCurrentSession to retrieve active hibernate session, but changed it to ...
0
votes
0answers
71 views

Spring managed hibernate transaction with scheduled tasks

I'm not really getting contextual transactions. Below I describe an interface from my application: interface InfoObservable { void subscribeToInfoLoadedEvent (InfoListener infoListener); void ...
1
vote
0answers
115 views

Persist multiple objects with jpa and hibernate, resume on fail

I know that SO has a lot of posts about validating data when persisting objects through jpa/Hibernate. Most of the answers says that a read of data should be performed before the persist so that an ...
0
votes
3answers
455 views

HibernateTemplate save performs inserts but not updates

I have a typical Spring / Hibernate setup. Here's my spring config: <context:annotation-config /> <context:component-scan base-package="com.myco.myapp.modules" /> ...
0
votes
1answer
373 views

Transaction isolation level REPEATABLE_READ using hibernate and jdbc

I am trying to develop a demo to cement my understanding of the REPEATABLE_READ isolation level. I have tried demos using hibernate and jdbc. JDBC works as expected, however hibernate does not. My ...
0
votes
0answers
170 views

Spring/JPA/Hibernate transaction management issues

Using: Spring 3.1.2 Spring Data JPA 1.1.0.RELEASE Hibernate 4.1.6 RESTEasy 2.3.5 I'm building a RESTful webservices platform talking to an Oracle database. Right now we're working on a Subscriber ...
2
votes
1answer
60 views

Some people say you can handle any global(XA) transaction with Spring + hibernate,true or not?

Some people say you can handle any global transaction with Spring + hibernate,true or not? Other people say you also need an application server XA datasource or another XA JTA implementation like ...
0
votes
1answer
131 views

spring transactioninterceptor class missing

I've got a problem with using transactions in spring. The exception below says that there's no org/springframework/transaction/interceptor/TransactionInterceptor class. The project is developed in ...
2
votes
2answers
80 views

Spring Hibernate transaction overhead

After upgrading Hibernate 3 to Hibernate 4, I am forced to remove HibernateTemplate from my spring based app. In order for a Hibernate session to be available, I have to use transaction demarkation ...

1 2 3 4 5 11