Class TransactionProxyFactoryBean
- All Implemented Interfaces:
- Serializable,- Aware,- BeanClassLoaderAware,- BeanFactoryAware,- FactoryBean<Object>,- InitializingBean
ProxyFactoryBean
 with a separate TransactionInterceptor definition.
 HISTORICAL NOTE: This class was originally designed to cover the
 typical case of declarative transaction demarcation: namely, wrapping a singleton
 target object with a transactional proxy, proxying all the interfaces that the target
 implements. However, in Spring versions 2.0 and beyond, the functionality provided here
 is superseded by the more convenient tx: XML namespace. See the
 declarative transaction management
 section of the Spring reference documentation to understand modern options for managing
 transactions in Spring applications. For these reasons, users should favor
 the tx: XML namespace as well as
 the @Transactional
 and @EnableTransactionManagement annotations.
 
There are three main properties that need to be specified:
- "transactionManager": the PlatformTransactionManagerimplementation to use (for example, aJtaTransactionManagerinstance)
- "target": the target object that a transactional proxy should be created for
- "transactionAttributes": the transaction attributes (for example, propagation behavior and "readOnly" flag) per target method name (or method name pattern)
If the "transactionManager" property is not set explicitly and this FactoryBean
 is running in a ListableBeanFactory, a single matching bean of type
 PlatformTransactionManager will be fetched from the BeanFactory.
 
In contrast to TransactionInterceptor, the transaction attributes are
 specified as properties, with method names as keys and transaction attribute
 descriptors as values. Method names are always applied to the target class.
 
Internally, a TransactionInterceptor instance is used, but the user of this
 class does not have to care. Optionally, a method pointcut can be specified
 to cause conditional invocation of the underlying TransactionInterceptor.
 
The "preInterceptors" and "postInterceptors" properties can be set to add
 additional interceptors to the mix, like
 PerformanceMonitorInterceptor.
 
HINT: This class is often used with parent / child bean definitions. Typically, you will define the transaction manager and default transaction attributes (for method name patterns) in an abstract parent bean definition, deriving concrete child bean definitions for specific target objects. This reduces the per-bean definition effort to a minimum.
 <bean id="baseTransactionProxy" class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean"
     abstract="true">
   <property name="transactionManager" ref="transactionManager"/>
   <property name="transactionAttributes">
     <props>
       <prop key="insert*">PROPAGATION_REQUIRED</prop>
       <prop key="update*">PROPAGATION_REQUIRED</prop>
       <prop key="*">PROPAGATION_REQUIRED,readOnly</prop>
     </props>
   </property>
 </bean>
 <bean id="myProxy" parent="baseTransactionProxy">
   <property name="target" ref="myTarget"/>
 </bean>
 <bean id="yourProxy" parent="baseTransactionProxy">
   <property name="target" ref="yourTarget"/>
 </bean>- Since:
- 21.08.2003
- Author:
- Juergen Hoeller, Dmitriy Kopylenko, Rod Johnson, Chris Beams
- See Also:
- 
Field SummaryFields inherited from interface org.springframework.beans.factory.FactoryBeanOBJECT_TYPE_ATTRIBUTE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected ObjectCreates an advisor for this FactoryBean's TransactionInterceptor.protected voidpostProcessProxyFactory(ProxyFactory proxyFactory) As of 4.2, this method addsTransactionalProxyto the set of proxy interfaces in order to avoid re-processing of transaction metadata.voidsetBeanFactory(BeanFactory beanFactory) This callback is optional: If running in a BeanFactory and no transaction manager has been set explicitly, a single matching bean of typePlatformTransactionManagerwill be fetched from the BeanFactory.voidsetPointcut(Pointcut pointcut) Set a pointcut, i.e a bean that can cause conditional invocation of the TransactionInterceptor depending on method and attributes passed.voidsetTransactionAttributes(Properties transactionAttributes) Set properties with method names as keys and transaction attribute descriptors (parsed via TransactionAttributeEditor) as values: for example, key = "myMethod", value = "PROPAGATION_REQUIRED,readOnly".voidsetTransactionAttributeSource(TransactionAttributeSource transactionAttributeSource) Set the transaction attribute source which is used to find transaction attributes.voidsetTransactionManager(PlatformTransactionManager transactionManager) Set the default transaction manager.Methods inherited from class org.springframework.aop.framework.AbstractSingletonProxyFactoryBeanafterPropertiesSet, createTargetSource, getObject, getObjectType, isSingleton, setAdvisorAdapterRegistry, setBeanClassLoader, setPostInterceptors, setPreInterceptors, setProxyClassLoader, setProxyInterfaces, setTargetMethods inherited from class org.springframework.aop.framework.ProxyConfigcopyFrom, isExposeProxy, isFrozen, isOpaque, isOptimize, isProxyTargetClass, setExposeProxy, setFrozen, setOpaque, setOptimize, setProxyTargetClass, toString
- 
Constructor Details- 
TransactionProxyFactoryBeanpublic TransactionProxyFactoryBean()
 
- 
- 
Method Details- 
setTransactionManagerSet the default transaction manager. This will perform actual transaction management: This class is just a way of invoking it.- See Also:
 
- 
setTransactionAttributesSet properties with method names as keys and transaction attribute descriptors (parsed via TransactionAttributeEditor) as values: for example, key = "myMethod", value = "PROPAGATION_REQUIRED,readOnly".Note: Method names are always applied to the target class, no matter if defined in an interface or the class itself. Internally, a NameMatchTransactionAttributeSource will be created from the given properties. - See Also:
 
- 
setTransactionAttributeSourceSet the transaction attribute source which is used to find transaction attributes. If specifying a String property value, a PropertyEditor will create a MethodMapTransactionAttributeSource from the value.- See Also:
 
- 
setPointcutSet a pointcut, i.e a bean that can cause conditional invocation of the TransactionInterceptor depending on method and attributes passed. Note: Additional interceptors are always invoked.- See Also:
 
- 
setBeanFactoryThis callback is optional: If running in a BeanFactory and no transaction manager has been set explicitly, a single matching bean of typePlatformTransactionManagerwill be fetched from the BeanFactory.- Specified by:
- setBeanFactoryin interface- BeanFactoryAware
- Parameters:
- beanFactory- owning BeanFactory (never- null). The bean can immediately call methods on the factory.
- See Also:
 
- 
createMainInterceptorCreates an advisor for this FactoryBean's TransactionInterceptor.- Specified by:
- createMainInterceptorin class- AbstractSingletonProxyFactoryBean
 
- 
postProcessProxyFactoryAs of 4.2, this method addsTransactionalProxyto the set of proxy interfaces in order to avoid re-processing of transaction metadata.- Overrides:
- postProcessProxyFactoryin class- AbstractSingletonProxyFactoryBean
- Parameters:
- proxyFactory- the AOP ProxyFactory about to be used
 
 
-