-2
votes
0answers
17 views

@Transactional annotation - no transaction

I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
0
votes
0answers
12 views

Joining two transactions spring bitronix

We use this bitronix.tm.resource.jdbc.PoolingDataSource with OracleXADataSouce, with our typical spring application context looking like this <bean id="bitronixTransaction" ...
0
votes
1answer
36 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
51 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
45 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
35 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 ...
3
votes
5answers
170 views

EntityManager from LocalContainerEntityManagerFactoryBean does not persist entities into the database

The problem is that the EntityManager injected with @PersistenceContext in a Spring managed bean does not persist the entities to the database. I have tried using @Transactional on the AddDao bean, ...
0
votes
0answers
28 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 ...
0
votes
2answers
27 views

Making a HTTP call from a java application coupled with a spring transaction manager

Here's the situation. I have an application that's working fine with the transactionmanager that i'm using. what i need to do is post some information onto another application in the form of http ...
1
vote
0answers
41 views

JPA + JUnit. @OneToOne binding inside a transaction in

I use JUnit + Spring + JPA I have two entities with @OneToOne relationship: @Entity public class Principal { //... @OneToOne @JoinColumn(name = "user_id") private User user; //... } ...
0
votes
2answers
56 views

Does a new transaction detach all previous entities?

Let's say we have the following piece of code: @Entity public class User { @Id private String name; @OneToOne(cascade = CascadeType.ALL) private Address address; //getters and ...
0
votes
2answers
65 views

Spring Transaction Manager: Rollback doesnt work

I wish to execute few insert queries within a transaction block where if there is any error all the inserts will be rolled back. I am using MySQL database and Spring TransactionManager for this. Also ...
0
votes
1answer
42 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? ...
2
votes
0answers
42 views

SPRING + JTA transaction unexpectedly rolled back

I've trouble with spring+JTA! I've a function annotated to @Transactional(propagation=Propagation.REQUIRED_NEW) and this function runs good when I store a lot of data. But I got an exception when I ...
0
votes
1answer
21 views

Understanding of Transactional services - spring

I have a service implementation with a particular method like so: public class ExampleServiceImpl implements ExampleService { @AutoWired @Resource private RecordRepository recordRepository; ...
3
votes
1answer
122 views

How to avoid repeatig DAO methods in Service classes? @Transactional annotated DAO and Service classes - is it acceptable practice?

I know that the best practice is having both service and dao layers and to add @Transactional annotations on the service level. But in my case it means most of my service classes is created just to ...
0
votes
3answers
131 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
29 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 ...
1
vote
0answers
41 views

Spring JNDI Configuration

We are using Spring to do JNDI look-up for our data access requirements. We are making calls to multiple stored procedures (in Sybase). I wanted a way to control the auto-commit property of the ...
0
votes
1answer
94 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 ...
1
vote
1answer
149 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 ...
0
votes
1answer
41 views

Independent transactions in Spring JDBC

I'm using the Spring JDBC (JdbcTemplate/NamedParameterJdbcTemplate) and Spring TransactionManager (DataSourceTransactionManager) in my DAO class. I have at least 2 clients that simultaneously using ...
2
votes
3answers
137 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 ...
0
votes
1answer
58 views

Spring test does not roll back after test

I have a series of integration tests using Spring tests and a H2 memory database. I've noticed that the h2 database does not get rolled back after every test. This is my config: ...
0
votes
1answer
145 views

Spring 3.2: @WebAppConfiguration breaks existing @Transactional tests

Greetings. I have a Roo generated web app. I want to test my controller. So am using spring-test-3.2. Using STS 3.2. Embedded Derby for testing. The test suite fails when the controller test ...
1
vote
1answer
54 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
70 views

Implementing Spring ChainedTransactionManager according to the “best efforts 1PC” pattern

The best effort 1PC is nicely described in this post. The author, David Syer, who works for SpringSource, provided an implementation of a ChainedTransactionManager extending the Spring ...
0
votes
2answers
247 views

Spring Transaction propagation REQUIRED, REQUIRES_NEW

in following code method doService1() update correct sql but doService2() sql has some issue , but when i call doService() it has to commit the doService1() update to DB even though the doService2() ...
0
votes
2answers
117 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 ...
1
vote
1answer
325 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 ...
2
votes
0answers
59 views

Camel Transaction Configuration Issue: javax.persistence.TransactionRequiredException

I'm configuring JMS Transactions in Camel 2.10.4 routes. When I run my app, a javax.persistence.TransactionRequiredException: no transaction in progress is thrown. From my research, I found out that ...
0
votes
1answer
184 views

TransactionRequiredException: no transaction is in progress JPA 2 with JpaRepository

I want to use JPA with Spring data. pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
2
votes
1answer
84 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. ...
2
votes
2answers
36 views

java spring: assemble other independent services into a single service

there are two services: BookService { add(Book book); ... } and MsgService { add(String msg); ... } the two services are independent. now i want this: XService { ...
0
votes
1answer
77 views

Spring 3.1 - DefaultMessageListenerContainer - How to identify errors in ErrorHandler

Info :: I have a DefaultMessageListener implementation with XA transaction. I have used a MessageListener implementation. Scenario:: My XA transaction is between a DB and a JMS Q Publish. In case of ...
0
votes
0answers
47 views

Spring TransactionAspectSupport.currentTransactionStatus() return null

Does anyone know the cause of this behavior and how to fix it? It is strange for me because @Transactional still works as expected (i.e the transaction rollbacks when I throw an exception). I use ...
0
votes
1answer
36 views

Spring Declarative Transaction. Custom PreInterceptors based on transactionAttributes

I have a spring Transaction defined as below - <bean id="ServiceTransactions" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean" abstract="true"> ...
0
votes
0answers
77 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
3answers
150 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
91 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); ...
0
votes
0answers
85 views

Spring Transactions Propagation

JMS/Datasource are full-XA 2PC and are managed by the Weblogic JTA Transaction manager. The message listener is not transactional annotated...(but it seems that is able to participate in ...
0
votes
3answers
30 views

Spring should you start a transaction when accessing an object using find?

I have a few methods @persistanceContext EntityManager em; public Car getCar(int id) { em.find(Car.class, id) } @Trasnactional public void saveCar(Car car) { em.save(car); } Should you ...
0
votes
1answer
71 views

Spring - JMS - DB

My questions is as follows: I have a service, which queries the DB and retrieves some records. Then it updates an external system using that information and in the end in updates back the DB. Using ...
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 ...
0
votes
1answer
26 views

Spring PROPAGATION_REQUIRED.. joined

Im using Spring and have two methods which are using declarative transaction... in some cases methodA calls methodB.. what i need to know is in declarative trasaction does the commit occur twice... ...
0
votes
0answers
67 views

Interceptor to set connection.setReadOnly(true) throws Transaction Error

I am trying to route all Reads to a MySQL slave by intercepting a spring Transaction and setting connection.setReadOnly(true). My interceptor uses aspectJ to create Aspects and looks like so - ...
0
votes
1answer
45 views

Spring transactions on recursive calls

I have a method that starts a transaction programmatically... using transaction template from spring... Void methodA() { TransactionTmeplate.......... Setpropgation to requires new.... ...
0
votes
3answers
437 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
2answers
80 views

Spring programmatic transaction

I have code that has transactions demarcated programmatically. Currently I have the isolation set to PROPAGATION_REQUIRES_NEW. Which works fine however I need to cater for recursive behaviour and for ...
1
vote
2answers
157 views

Creating a post commit when using transaction in Spring

Due to certain reasons i have manually performed transaction commit and roll back using Spring PlatformTransactionManager, what i need to do is setup a hook so that a post commit action takes place ...

1 2 3 4 5 14