在java项目中实现spring 和 myBatis 的整合
1.下载mybatis-spring.jar包。
2.配置好spring和mybatis环境。
3.在项目中我使用sqlSessionFactoryBean来实例化每个接口。具体的配置文件代码如下:
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="jdbcDataSource"/> <property name="configLocation" value="classpath:/mybatis-config.xml"></property> <!-- <property name="mapperLocations" value="com/oliver/spider/beans/*.xml"></property> --> </bean> <bean id="userMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"> <property name="mapperInterface" value="com.oliver.mapper.inter.ITestClassMapper" /> <property name="sqlSessionFactory" ref="sqlSessionFactory"/> </bean>
然后就像使用普通bean一样使用userMapper就可以了。
我这里没有使用*mapper.xml文件,至于如何使用,我还在探索中。