Search:

Type: Posts; User: jbalcaen; Keyword(s):

Search: Search took 0.14 seconds.

  1. Replies
    0
    Views
    1,577

    EJB BMT Spring transaction propagation

    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...
  2. Thanks for your reply, To avoid this...

    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...
  3. Gobal transaction does not commit : UnexpectedRollbackException

    Hello,

    I have a transactional method m1() who calls another transactional method m2() :



    public void m1() {
    try {
    m2();
    } catch(Exception e) {
  4. service invoked remotely by another service by http invoker : classloader problem

    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...
  5. ok, to avoid the problem of multithreading, I...

    ok, to avoid the problem of multithreading, I create an array of HibernateTemplate objects and each hibernateTemplate refers to a sessionFactory :

    HibernateTemplate hibernateTemplate =...
  6. jtaTransactionManager don't commit with hibernate

    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...
  7. Replies
    1
    Views
    903

    problem : recreation of singleton beans

    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...
  8. ok, thanks for your reply

    ok, thanks for your reply
  9. populate mappingResources in runtime (hibernate)

    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...
  10. Replies
    1
    Views
    812

    Ok, it's resolved. It was a bad version of...

    Ok, it's resolved.

    It was a bad version of Spring
  11. Replies
    1
    Views
    812

    problem accessing beans from a jar file

    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 :
    ...
Results 1 to 11 of 11