思路

  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. Keystore Problem: Cannot convert COMBINED of type class java.lang.String to class org.jivesoftware.openfire.spi.ConnectionType

    go to: Server Manager -> System Properties Search for "xmpp.socket.ssl.client.keypass" ...

  2. 自动化运维-Ansible-playbook

    Ansible Playbook https://ansible-tran.readthedocs.io/en/latest/docs/playbooks_intro.html Ansible中文网址 ...

  3. 【HICP Gauss】数据库 数据库管理(连接方式 会话模式 存储表空间)-6

    数据库连接方式:驱动连接和客户端连接 驱动连接 : JDBC GSC ODBC 客户端连接 zsql工具 zsql / as sysdba -q #管理员身份登陆 zsql omm/ - #普通身份登 ...

  4. WM_MOUSEWHEEL、WM_LBUTTONDOWN等父子窗口消息传递陷阱

    mfc中,碰到以下问题:父对话框A.子窗口B.B是CWnd对象.需要在B中处理WM_MOUSEWHEEL.WM_LBUTTONDOWN等消息. 所以在B中增加对应的消息处理,发现B中的消息循环中,收不 ...

  5. pandas 6 时间

    类 备注 创建方法 Timestamp 时刻数据 to_datetime,Timestamp DatetimeIndex Timestamp的索引 to_datetime,date_range,Dat ...

  6. AtCoder Beginner Contest 127 解题报告

    传送门 非常遗憾.当天晚上错过这一场.不过感觉也会掉分的吧.后面两题偏结论题,打了的话应该想不出来. A - Ferris Wheel #include <bits/stdc++.h> u ...

  7. java的新生代 老年代 永久代

    介绍得非常详细: 新生代回收:(复制算法) 在堆中,新生代主要存放的是哪些很快就会被GC回收掉的或者不是特别大的对象(是否设置了-XX:PretenureSizeThreshold 参数).复制算法的 ...

  8. LeetCode 1105. Filling Bookcase Shelves

    原题链接在这里:https://leetcode.com/problems/filling-bookcase-shelves/ 题目: We have a sequence of books: the ...

  9. 2019-2020-1 20199302《Linux内核原理与分析》第十一周作业

    缓冲区溢出 缓冲区溢出是指程序试图向缓冲区写入超出预分配固定长度数据的情况.这一漏洞可以被恶意用户利用来改变程序的流控制,甚至执行代码的任意片段.这一漏洞的出现是由于数据缓冲器和返回地址的暂时关闭,溢 ...

  10. learning armbian steps(11) ----- armbian 源码分析(六)

    接下来我们来分析一下uboot的编写过程: 从 lib/compilation.sh  89开始阅读: compile_uboot() { # not optimal, but extra clean ...