我如下配置TransactionInterceptor时不能进行回滚<bean id="tranInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager">
<ref bean="tranManage"/>
</property>
<property name="transactionAttributeSource">
<value>com.regest.biz.businessImp.RegestBizImp.setStudent=PROPAGATION_REQUIRED</value>
</property>
</bean>但是我做如下修改后,却能进行了回滚<bean id="tranInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager">
<ref bean="tranManage"/>
</property>
<property name="transactionAttributes">
<props> 
<prop key="setStudent">PROPAGATION_REQUIRED</prop>  
</props> 
</property>
</bean>
这是什么原因啊
我用的spring jar包是myeclipse5.1自带的,spring的版本应该是1.2.6
数据库采用的mysql 但是表的类型已经声明为 InnoDB
非常感谢您能回答我的问题 谢谢!