ProxyFactoryBean « Transaction « Spring Q&A





1. Configuring ProxyFactoryBean for transactions    forum.springsource.org

I need to wrap an existing BO which uses TFB for transaction management with an around advice. You mention that ProxyFactoryBean should be used instead in more complex scenrios. Is there ...

2. ProxyFactoryBean vs. TransactionProxyFactoryBean    forum.springsource.org

ProxyFactoryBean vs. TransactionProxyFactoryBean Hi All, I'm just wondering what preference people have for wiring up transaction support with an AOP Proxy on a Service. Do most people prefer the more generic ...

3. Spring Declarative Transaction Management not working with ProxyFactoryBean    forum.springsource.org

Jun 28th, 2006, 08:30 AM #1 sabitha View Profile View Forum Posts Private Message Junior Member Join Date Jun 2006 Posts 2 Spring Declarative Transaction Management not working with ProxyFactoryBean Hi ...

4. ProxyFactoryBean X TransactionProxyFactoryBean    forum.springsource.org

Hello. I was using the ProxyFactoryBean but now I need transactions, so let's change for TransactionProxyFactoryBean. The problem is that TransactionProxyFactoryBean does not have the property interceptorNames like ProxyFactoryBean and I ...

5. Annotation-driven transactions and ProxyFactoryBean    forum.springsource.org

Jul 7th, 2008, 01:53 AM #1 daniel.mfreitas View Profile View Forum Posts Private Message Member Join Date Oct 2007 Posts 58 Annotation-driven transactions and ProxyFactoryBean Hello guys. I can't put annotation ...

6. Configure Transaction and Logging using ProxyFactoryBean    forum.springsource.org

Configure Transaction and Logging using ProxyFactoryBean Hi, In our application, we want to use both declarative transaction (using TransactionProxyFactoryBean) and logging using AOP logging interceptor (ProxyFactoryBean). We have already using parent ...

7. Change from TransactionProxyFactoryBean to ProxyFactoryBean for spring/hibernate    forum.springsource.org

Change from TransactionProxyFactoryBean to ProxyFactoryBean for spring/hibernate Hi all, I was using the TransactionProxyFactoryBean for my dao objects earlier. But during dao injection I faced a problem of lazyinitialization, session was ...

8. How can I control the transaction order with ProxyFactoryBean    forum.springsource.org

How can I control the transaction order with ProxyFactoryBean Hi there, I have @Transactional annotation on a Bean and I am using tx:annotation-driven with 2.5.6 On this bean I have a ...

9. @Transactional and proxyfactorybean unexpected behavior    forum.springsource.org

@Transactional and proxyfactorybean unexpected behavior Hello, I was in the middle of upgrading an older Spring project to 2.5. Nearly everything works fine with the exception of one thing, which seems ...





10. Multiple aopProxies using ProxyFactoryBean and @Transactional    forum.springsource.org

Multiple aopProxies using ProxyFactoryBean and @Transactional Hi, I have a question regarding multiple proxies. A simple setup looks like this: Code: public interface SimpleInterface { String doSomething(); } public class SimpleMethodInterceptor ...