Hello,
I would know if it is possible to propagate the transaction with the Spring transaction attribute set to PROPAGATION_REQUIRED using the JtaTransactionManager when you invoke a local...
Type: Posts; User: jbalcaen; Keyword(s):
Hello,
I would know if it is possible to propagate the transaction with the Spring transaction attribute set to PROPAGATION_REQUIRED using the JtaTransactionManager when you invoke a local...
Thanks for your reply,
To avoid this behaviour, I have set the property globalRollbackOnParticipationFailure of the transaction manager to false.
This lets the transaction originator decide on...
Hello,
I have a transactional method m1() who calls another transactional method m2() :
public void m1() {
try {
m2();
} catch(Exception e) {
Hello,
I use http Invoker remoting technology to access services remotely.
I have a service that invoke remotely another service by http invoker.
These 2 services are deployed in 2 separated...
ok, to avoid the problem of multithreading, I create an array of HibernateTemplate objects and each hibernateTemplate refers to a sessionFactory :
HibernateTemplate hibernateTemplate =...
I have a simple DAO that uses HibernateTemplate. When I perfom a simple insert of a row in the database, the operation is not commited.
Here is the spring configuration file:
<bean...
My application recreate the singleton beans.
I have a web application with an applicationContext (applicationContext.xml) in /WEB-INF and another applicationContext (springConfig.xml) in a jar...
ok, thanks for your reply
I have multiple sessionFactories that I define in the applicationContext.xml.
I define one session factory (sessionFactory1) with a lot of mapping resources files. I would extract from Java code...
Ok, it's resolved.
It was a bad version of Spring
Hello,
I have a package 'commons' where I define Spring beans.
This package is set in a jar file which is used by webapps.
To access a bean from a jar, I use this code in my webapp :
...