思路

  1. 数据库连接池交给 Spring 管理
  2. SqlSessionFactory 交给 Spring 管理
  3. 从 Spring 容器中直接获得 mapper 的代理对象

步骤

  1. 创建工程
  2. 导入 jar
  3. 创建 config 文件夹,放置配置文件
    • 配置文件:

      • jdbc.properties : 数据库配置
        jdbc.driverClass=com.mysql.cj.jdbc.Driver
        jdbc.url=jdbc:mysql://localhost:3306/jdbc?serverTimezone=UTC
        jdbc.username=root
        jdbc.password=root
      • log4j.properties :日志打印
      • mybatis_config.xml:myBatis 配置,只需要配置二级缓存就可以了,其他都交给 Spring 处理。
        <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"    "http://mybatis.org/dtd/mybatis-3-config.dtd">
        <configuration>    <!-- 开启二级缓存 -->   
        <settings>       
        <setting name="cacheEnabled" value="true" />   
        </settings>
        </configuration>
      • applicationContext.xml:Spring 配置文件
        <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"   
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
        xmlns:aop="http://www.springframework.org/schema/aop"   
        xmlns:tx="http://www.springframework.org/schema/tx"   
        xmlns:context="http://www.springframework.org/schema/context"
        xsi:schemaLocation="                          
        http://www.springframework.org/schema/beans                           
        http://www.springframework.org/schema/beans/spring-beans.xsd                           
        http://www.springframework.org/schema/context                           
        http://www.springframework.org/schema/context/spring-context.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">   
        <!-- 加载配置文件 -->   
        <context:property-placeholder location="classpath:config/jdbc.properties" />   
        <!-- 数据库连接池 -->   
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">       
        <property name="driverClassName"
        value="${jdbc.driverClass}" />       
        <property name="url" value="${jdbc.url}" />       
        <property name="username" value="${jdbc.username}" />       
        <property name="password" value="${jdbc.password}" />       
        <property name="maxActive" value="10" />       
        <property name="maxIdle" value="5" />   
        </bean>   
        <!-- 配置 sqlSessionFactory -->   
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">       
        <!-- 配置 mybatis 核心配置文件 -->       
        <property name="configLocation" value="classpath:config/mybatis_config.xml" />       
        <!-- 配置数据源 -->       
        <property name="dataSource" ref="dataSource" />       
        </bean>   
        </beans>
  4. DAO 开发
    1. 创建 POJO User.java

      public class User {   
      private Integer id;   
      private String username;   
      private Date birthday;   
      private String address;   
      private boolean sex;   
      public boolean isSex() {       
      return sex;   
      }   
      public void setSex(boolean sex) {      
      this.sex = sex;   
      }   
      public Integer getId() {       
      return id;   
      }   
      public void setId(Integer id) {      
      this.id = id;  
      }   
      public String getUsername() {       
      return username;  
      }   
      public void setUsername(String username) {      
      this.username = username;   
      }   
      public Date getBirthday() {     
      return birthday;  
      }   
      public void setBirthday(Date birthday) {     
      this.birthday = birthday;   
      }   
      public String getAddress() {    
      return address;   
      }   
      public void setAddress(String address) {      
      this.address = address;  
      }   
      @Override   
      public String toString() {       
      return "User{" +                "id=" + id +                ", username='" + username + '\'' +                ", birthday=" + birthday +                ", address='" + address + '\'' +                ", sex=" + sex +                '}';   
      }
      }
    2. 在 applicatonContext.xml 中配置别名扫描

    3. 实现 UserMapper 接口

      public interface UserMapper {   
      User quertUserById(int id);    List<User> queryUserByUserName(String username);    void saveUser(User user);
      }
    4. 实现 UserMapper.xml 配置文件

      <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE mapper PUBLIC
      "-//mybatis.org//DTD Mapper 3.0//EN"    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
      <mapper namespace="cc.lijingbo.ssm.mapper.UserMapper">   
      <select id="quertUserById" parameterType="int" resultType="user">       
      select * from user where id = #{id}   
      </select>   
      <select id="queryUserByUserName" resultType="user" parameterType="String">       
      select * from user where username like '%${value}%'   
      </select>   
      <insert id="saveUser" parameterType="user">       
      <selectKey keyProperty="id" keyColumn="id" order="AFTER"   resultType="int">           
      select last_insert_id()       
      </selectKey>       
      insert into user (username,sex,address) values (#{username},#{sex},#{address})   
      </insert>
      </mapper>
    5. 在 applicationContext.xml 中配置 mapper 扫描

    6. 测试

      public class UserMapperTest {   
      ApplicationContext applicationContext;   
      @Before   
      public void setUp() throws Exception {       
      applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
      }   
      @Test   
      public void quertUserById() {       
      UserMapper userMapper =
      applicationContext.getBean(UserMapper.class);       
      User user = userMapper.quertUserById(3);       
      System.out.println(user);   
      }   
      @Test   
      public void queryUserByUserName() {       
      UserMapper userMapper = applicationContext.getBean(UserMapper.class);       
      List<User> users = userMapper.queryUserByUserName("张");       
      for (User u : users) {          
      System.out.println(u);      
      }   
      }   
      @Test   
      public void saveUser() {       
      UserMapper userMapper = applicationContext.getBean(UserMapper.class);       
      User user = new User();       
      user.setUsername("刘备");      
      user.setAddress("深圳XXX");      
      user.setSex(false);      
      userMapper.saveUser(user); 
      }
      }

源码 github 地址

Spring 整合 myBatis的更多相关文章

  1. Spring学习总结(六)——Spring整合MyBatis完整示例

    为了梳理前面学习的内容<Spring整合MyBatis(Maven+MySQL)一>与<Spring整合MyBatis(Maven+MySQL)二>,做一个完整的示例完成一个简 ...

  2. Spring学习总结(五)——Spring整合MyBatis(Maven+MySQL)二

    接着上一篇博客<Spring整合MyBatis(Maven+MySQL)一>继续. Spring的开放性和扩张性在J2EE应用领域得到了充分的证明,与其他优秀框架无缝的集成是Spring最 ...

  3. 分析下为什么spring 整合mybatis后为啥用不上session缓存

    因为一直用spring整合了mybatis,所以很少用到mybatis的session缓存. 习惯是本地缓存自己用map写或者引入第三方的本地缓存框架ehcache,Guava 所以提出来纠结下 实验 ...

  4. 2017年2月16日 分析下为什么spring 整合mybatis后为啥用不上session缓存

    因为一直用spring整合了mybatis,所以很少用到mybatis的session缓存. 习惯是本地缓存自己用map写或者引入第三方的本地缓存框架ehcache,Guava 所以提出来纠结下 实验 ...

  5. spring整合mybatis错误:class path resource [config/spring/springmvc.xml] cannot be opened because it does not exist

    spring 整合Mybatis 运行环境:jdk1.7.0_17+tomcat 7 + spring:3.2.0 +mybatis:3.2.7+ eclipse 错误:class path reso ...

  6. spring 整合Mybatis 《报错集合,总结更新》

    错误:java.lang.NoClassDefFoundError: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldExcepti ...

  7. spring整合mybatis(hibernate)配置

    一.Spring整合配置Mybatis spring整合mybatis可以不需要mybatis-config.xml配置文件,直接通过spring配置文件一步到位.一般需要具备如下几个基本配置. 1. ...

  8. spring 整合 mybatis 中数据源的几种配置方式

    因为spring 整合mybatis的过程中, 有好几种整合方式,尤其是数据源那块,经常看到不一样的配置方式,总感觉有点乱,所以今天有空总结下. 一.采用org.mybatis.spring.mapp ...

  9. Mybatis学习(六)————— Spring整合mybatis

    一.Spring整合mybatis思路 非常简单,这里先回顾一下mybatis最基础的根基, mybatis,有两个配置文件 全局配置文件SqlMapConfig.xml(配置数据源,全局变量,加载映 ...

  10. Spring整合MyBatis 你get了吗?

    Spring整合MyBatis 1.整体架构dao,entity,service,servlet,xml 2..引入依赖 <dependencies> <dependency> ...

随机推荐

  1. C#-使用GoogleAPI读写spreadsheets

    https://docs.google.com/spreadsheets/在线使用一些常用办公工具,比如excel. 如需要C#代码自动读写这些excel,则需要使用GoogleAPI. 封装的公用类 ...

  2. 服务器部署docker lnmp环境

    一.安装dockerDocker要求运行在Centos 7上,要求系统为64位,系统内核版本3.10以上 1.uname -an 查看当前系统版本 2.yum -y install docker 下载 ...

  3. Linux操作系统故障排除之Grub信息被删除

    Linux操作系统故障排除之Grub信息被删除 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. [root@yinzhengjie ~]# hexdump -C /dev/sda - ...

  4. Python并发编程-queue

    Python并发编程-queue 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.Queue # !/usr/bin/env python # _*_conding:utf-8_ ...

  5. CodeForces - 76F:Tourist (旋转坐标系,LIS)

    pro:有一个驴友,以及给定N个表演地点xi和时间ti,驴友的速度不能超过V. 问他在起点为原点和不设置起点的情况下分别最多参观多少个表演. sol:BZOJ接飞饼见过:clari也在camp的DP专 ...

  6. 为什么管理人员都喜欢用Visio画图

    一.形状数据一体化 这是管理者最喜欢的功能了,这也Visio的最核心的功能: 操作如下: 例如流程中的步骤.开始日期或结束日期.成本.设备部件等.数字.图标.颜色.标志和进度条等图形有助于快速方便地浏 ...

  7. Laravel —— 多模块开发

    Laravel 框架比较庞大,更适用于比较大的项目. 为了整个项目文件结构清晰,不同部分分为不同模块很有必要. 一.安装扩展包 1.根据不同 Laravel 版本,选择扩展包版本. packagest ...

  8. STM32 IAP程序 源码 和测试代码 有详细的中文注释

    http://bbs.21ic.com/forum.php?mod=viewthread&tid=588265&reltid=624002&pre_pos=2&ext= ...

  9. Greenplum 资源队列(转载)

    1.创建资源队列语法 Command:     CREATE RESOURCE QUEUEDescription: create a new resource queue for workload m ...

  10. WinDbg常用命令系列---异常相关操作

    .exr (Display Exception Record) .exr命令显示异常记录的内容. .exr Address .exr -1 参数: Address指定异常记录的地址.如果指定-1作为地 ...