思路

  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. MySQL Install--编译安装MySQL 5.7

    MySQL 编译相关选项配置和说明 [MySQL安装的根目录] -DCMAKE_INSTALL_PREFIX=/export/servers/mysql/ [MySQL数据库文件存放目录] -DMYS ...

  2. oracle执行计划(二)----如何查看执行计划

    目录: (一)六种执行计划  (1)explain plan for  (2)set autotrace on  (3)statistics_level=all  (4)dbms_xplan.disp ...

  3. JSON的Go解析

    JSON(Javascript Object Notation)是一种轻量级的数据交换语言,以文字为基础,具有自我描述性且易于让人阅读.尽管JSON是Javascript的一个子集,但JSON是独立于 ...

  4. vue2 design 手记

    Ant Design of Vue github地址:https://github.com/vueComponent/ant-design-vue Ant Design of Vue文档:https: ...

  5. O(n) 取得数组中每个元素右边最后一个比它大的元素

    题目 2019.9.7,icpc徐州网络赛的E题 XKC's basketball team ,计蒜客上还可以做. 链接:https://nanti.jisuanke.com/t/41387 Inpu ...

  6. python测试开发django-58.MySQL server has gone away错误的解决办法

    前言 使用django执行sql相关操作的时候,出现一个"MySQL server has gone away"错误,后来查了下是sql执行过程中,导入的文件较大时候,会出现这个异 ...

  7. 跨平台的EVENT事件 windows linux(转)

    #ifndef _HIK_EVENT_H_ #define _HIK_EVENT_H_ #ifdef _MSC_VER #include <Windows.h> #define hik_e ...

  8. Yii集成PHPWord

    一.安装 1.下载composer curl -sS https://getcomposer.org/installer | php 将composer.phar文件移动到bin目录以便全局使用com ...

  9. shell脚本自动化安装pgsql10.5版本

    看到有个大佬写了个很实用的脚本,于是这里做了转载 #!/bin/bash #进入软件的制定安装目录 echo "进入目录/usr/local,下载pgsql文件" cd /usr/ ...

  10. python 查询文件修改python lib 库文件

    运行code import os, time import sys import re def search(path, name): for root, dirs, files in os.walk ...