简洁的代理定义
特别是在定义事务代理时,您可能会得到许多类似的代理定义。使用父bean定义、子bean定义以及内部bean定义可以使代理定义更加清晰简洁。
首先,我们为代理创建一个父模板bean定义,如下所示:
<bean id="txProxyTemplate" abstract="true"
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
<property name="transactionManager" ref="transactionManager"/>
<property name="transactionAttributes">
<props>
<prop key="*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
这个bean本身永远不会被实例化,因此它实际上可以是不完整的。然后,需要创建的每个代理都是一个子bean定义,它将代理的目标作为内部bean定义进行包装,因为目标本身永远不会单独使用。以下示例展示了这样一个子bean:
<bean id="myService" parent="txProxyTemplate">
<property name="target">
<bean class="org.springframework.samples.MyServiceImpl">
</bean>
</property>
</bean>
您可以覆盖父模板中的属性。在以下示例中,我们覆盖了事务传播设置:
<bean id="mySpecialService" parent="txProxyTemplate">
<property name="target">
<bean class="org.springframework.samples.MySpecialServiceImpl">
</bean>
</property>
<property name="transactionAttributes">
<props>
<prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="load*">PROPAGATION_REQUIRED,readOnly</prop>
<prop key="store*">PROPAGATION_REQUIRED</prop>
</props>
</property>
</bean>
请注意,在父bean示例中,我们通过将abstract
属性设置为true
来明确标记父bean定义为抽象,如之前所述,以便它实际上可能永远不会被实例化。应用上下文(但不是简单的bean工厂),默认情况下会预先实例化所有单例。因此,对于单例bean(至少对于单例bean),如果您有一个(父)bean定义,您打算仅用作模板,并且该定义指定了一个类,则必须确保将abstract
属性设置为true
。否则,应用上下文实际上会尝试预先实例化它。