分类:
2008-10-17 14:26:38
一、测试类和配置文件的目录结构
test
bbs.spring.common.test
BaseTransactionalIntegrationTests
applicationContext.xml
bbs.spring.service.test
TopicServiceImplTest
applicationContext-test.xml
二、applicationContext.xml配置
配置数据源、事务和依赖注入,暴露带事务的业务接口。
Xml代码
......
class="org.springframework.orm.hibernate3.HibernateTemplate">
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
class="org.eesite.bbs.hibernate.dao.TopicDaoImpl">
class="org.eesite.bbs.spring.service.TopicServiceImpl">
org.eesite.bbs.spring.service.ITopicService
......
class="org.springframework.orm.hibernate3.HibernateTemplate">
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
class="org.springframework.transaction.interceptor.TransactionProxyFactoryBean">
class="org.eesite.bbs.hibernate.dao.TopicDaoImpl">
class="org.eesite.bbs.spring.service.TopicServiceImpl"> [1]
--------------------next---------------------