spring+ibatis整合方法

mengsun 2011-04-20

1、spring配置文件中增加以下代码

<beanid="sqlMapClient"class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">

<propertyname="configLocation"value="classpath:conf/ibatis/sqlmap-config.xml"/>

<propertyname="dataSource"ref="dataSource"/>

</bean>

<beanid="xxxxx"class="xxxxxx">

<propertyname="sqlMapClient"ref="sqlMapClient"/>

</bean>

2、ibatis配置文件sqlmap-config.xml中引入具体的ibatis配置文件即可

<sqlMapresource="conf/ibatis/ibatis.xxx.xml"/>

3、所有dao类都继承com.ibatis.sqlmap.client.SqlMapClient

相关推荐

兔子压倒窝边草 / 0评论 2013-07-26
蜀川居 / 0评论 2014-07-16