Hi: I'm doing a project with Tapestry 5.0.9 and Spring 2.0, but I suffer from a problem which is described just the same as this: http://www.mail-archive.com/users@tapestry.apache.org/msg11787.html It's a problem during doing these tasks when using Tapestry 5.0.5, I wonder if the bug fixed in 5.0.9 or later version. If the bug fixed, how can I change my configuration file of Spring to use org.springframework.transaction.interceptor.TransactionProxyFactoryBean correctly? My code is as this ... <bean id="baseTransactionProxy" class="org.springframework.transaction.interceptor.TransactionProxyFacto ryBean" abstract="true"> <property name="transactionManager" ref="transactionManager"/> <property name="transactionAttributes"> <props> <prop key="*">PROPAGATION_REQUIRED</prop> </props> </property> </bean> ... <bean id="BorrowBook" parent="baseTransactionProxy"> <property name="target"> <ref local="BorrowService" /> </property> </bean> ... Thanks & I will very appreciate your help :-)
Regards Zhichao Wen