Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
4k views

What is a good open source J2SE JTA TransactionManager implementation?

Basically, what it says on the tin; I need a JTA implementation useable in a J2SE application, ideally one that doesn't carry too much of a framework burden with it.
1
vote
2answers
75 views

No Hibernate session bound to the thread while using multiple transation managers

I have created two transaction managers(one for READ requests and another for READ-WRITE requests) and two session factories for the same. Important snippets are as follows: <tx:annotation-driven ...
1
vote
1answer
337 views

JDBCTemplate with TransactionTemplate and Connection Pool, which datasource to use

I'm not quite sure how to formulate the question, so feel free too tell my that I am thinking completly wrong. I want to use the JdbcTemplate and the TransactionTemplate. I start of by initilizing my ...
1
vote
1answer
276 views

Spring to automatically open another transactionManager?

I have two Databases , with two sets of spring configurations : The lower level is CORE db , the upper level is APP db . Each db has its persistenceUnit , entityManagerFactory , transactionManager , ...
0
votes
0answers
29 views

ormlite for android: design help and more

It's a few months that I started developing android application. I have worked for about two years with Spring framework and Hibernate. So, searching for an ORM tool for android I found the ormlite ...
0
votes
0answers
22 views

Override default transaction manager from junit functions

We have 2 transaction managers. <bean id="txManagerReadRequest" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory" ...
0
votes
1answer
151 views

migrating from HibernateTransactionManager to JpaTransactionManager

I changed the sessionFactory bean creation in an existing application because of various reasons from : <bean id="sessionFactory" ...
0
votes
0answers
23 views

What is hibernate transaction manegment?

iam very new in hibernate.. i wnat konw what is hibernate transaction. in wich situation we are using this.. how to use this.. please help me... thanks and regards...
0
votes
3answers
195 views

C# TransactionManager

Hi I have a generator which made some automated code (creating all the get, set, etc) for me structured by a Database, in this code there is a piece of code that is as follows: SqlTransaction ...
0
votes
2answers
244 views

JmsTransactionManager with more connectionFactories

I was wondering if anyone can help me with a large problem, I'm trying to implement more jmsTransactionManagers with Spring 2.5.6, but it isn't working. I got 5 connectionfactories because i have to ...
0
votes
0answers
291 views

Spring, XA and WebSphere

I am trying to get XA transactions working in a Spring v3 application inside WebSphere v7. My App Context reads: <bean id="jmsConnectionFactory" ...
0
votes
2answers
1k views

createCriteria requires an active transaction

Im having a problem with some spring + hibernate stuff. <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
1answer
56 views

Reading Resources needed for Transaction Management in .Net

I need to look into some .Net based Transaction Management for an in-flight project. Does anyone have any online reading resources that would give me some grounding / background reference when I ...
0
votes
1answer
639 views

How to programmatically get PlatformTransactionManager of a DAO?

I am developing a generic CRUD app with wicket , that can edit any Spring/JPA entities with a AbstractDao pattern's implementation , such as UserDaoImpl , ForumDaoImpl ...etc In my wicket page : I ...
0
votes
2answers
177 views

How to use transaction advisors with annotations?

supose I have the following example: @Transactional(propagation=Propagation.SUPPORTS, readOnly=true) public class MyServiceImpl implements MyService { ... ...
0
votes
2answers
219 views

Spring DatasourceTransaction Manager Problem

final DataSource ds = DataSourceLocator.getInstance() .getDataSource(sg.cmpl.starhub.lprs.Constants.APP_KEY); final DataSourceTransactionManager txManager = new DataSourceTransactionManager(); ...