大家好,又见面了,我是你们的朋友全栈君。
dependency
>
groupId
>org.mybatis</
groupId
>
artifactId
>mybatis</
artifactId
>
version
>3.5.3</
version
>
dependency
>
<
dependency
>
groupId
>org.mybatis</
groupId
>
artifactId
>mybatis-spring</
artifactId
>
version
>2.0.7</
version
>
dependency
>
<
dependency
>
groupId
>org.springframework</
groupId
>
artifactId
>spring-jdbc</
artifactId
>
version
>5.3.11</
version
>
dependency
>
<
bean
id
=”dataSource”
class
=”org.springframework.jdbc.datasource.DriverManagerDataSource”
>
bean>
<
bean
id
=”sqlSessionFactory”
class
=”org.mybatis.spring.SqlSessionFactoryBean”
>
property
name
=”dataSource”
ref
=”dataSource”
/>
property
name
=”configLocation”
value
=”classpath:mybatis-config.xml”
/>
property
name
=”mapperLocations”
value
=”classpath:com/wang/dao/*.xml”
/>
bean
>
4. 既然有了SqlSessionFactory工厂,那咱们就可以通过这个工厂创建SqlSession对象啦,不过是通过这个工厂中SqlSession模板(SqlSessionTemplate)来直接创建SqlSession对象:(在这个Bean管理中需要通过
constructor-arg构造器进行注入并且给这个构造器的参数(index)给其赋值,
通过参数在参数列表中的索引找到参数列表中对应参数,index从0开始
)
<
bean
id
=”sqlSession”
class
=”org.mybatis.spring.SqlSessionTemplate”
>
constructor-arg
index
=”0″
ref
=”sqlSessionFactory”
/>
bean
>
5.有了前面的一些准备工作呢那咱们就可以做一个简单的测试啦!!!
5.1 首先先要准备测试的数据库相应的实体类
5.2 有了这个实体类还需要一个编辑数据库数据的接口:
5.4
使用spring整合mybatis需要一个实体类来通过SqlSessionTemplate创建的SqlSession对象获取上面的被Mapper.xml实现的接口,并实现接口里面的方法:
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/137680.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...