[code="java"]
PROPAGATION_REQUIRED,readOnly
PROPAGATION_REQUIRED,readOnly
PROPAGATION_REQUIRED,readOnly
PROPAGATION_REQUIRED,readOnly
PROPAGATION_REQUIRED,readOnly
<prop key="add*">PROPAGATION_NESTED</prop>
<prop key="insert*">PROPAGATION_NESTED</prop>
<prop key="save*">PROPAGATION_NESTED</prop>
<prop key="doVerify*">PROPAGATION_NESTED</prop>
<prop key="update*">PROPAGATION_NESTED</prop>
<prop key="delete*">PROPAGATION_NESTED</prop>
<prop key="remove*">PROPAGATION_NESTED</prop>
<prop key="findSession">PROPAGATION_NESTED</prop>
</props>
</property>
</bean>
<!-- 资源文件绑定器 -->
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="message-info"/>
<property name="useCodeAsDefaultMessage" value="true"/>
</bean>
<bean id="BeanNameAutoProxyCreator"
class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<property name="beanNames">
<value>*Service</value>
</property>
<property name="interceptorNames">
<list>
<value>transInterceptor</value>
</list>
</property>
<property name="proxyTargetClass" >
<value>true</value>
</property>
</bean>[/code]