开发者学堂课程【Java Web 开发系列课程:Spring 框架入门:Spring 整合 mybatis04】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/538/detail/7354
Spring 整合 mybatis04
spring 整合 mybatis 第四种方式―不需要 mybatis 配置文件将所有配置信息配置spring 的配置文件中。
xmlns="http: //www.springframework.org/schema/beans"
xmlns:xsi="http://www.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.sprinqframework.orq/schema/beans
http://www.sprinqframework.orq/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
value="com.mysqL.jdbc.Driver"/>
value="jdbc:mysqL: / /Localhost: 3306/test" / >
class="org.sprinaframework.idbc.datasource.DataSourceTransactionManager">
class="org.mybatis.spring.sqlSessionFactoryBean">
value="classpath:cn/sxt/vo/*.mapper.xmL">
class="org.mybatis.spring.sqLSessionTemplate">