Spring 整合 mybatis04| 学习笔记

开发者学堂课程【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">

上一篇:Spring学习笔记:04 Bean的作用域 (Bean scopes)


下一篇:Cocos2d-x 精灵图片预加载中不会出现重复加载问题