Spring Boot整合Mybatis

在pom.xml中添加依赖

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.38</version>
</dependency>

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid-spring-boot-starter</artifactId>
    <version>1.1.2</version>
</dependency>

配置数据源 在application.yml添加如下配置 并修改url连接的数据库 用户名 和 密码

spring:
    # 数据源配置
    datasource:
        type: com.alibaba.druid.pool.DruidDataSource
        driverClassName: com.mysql.jdbc.Driver
        url: jdbc:mysql://localhost:3306/test?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF-8
        username: root
        password: 1234
        # Druid配置
        druid:
            initial-size: 10  #初始化时建立物理连接的个数。初始化发生在显示调用init方法,或者第一次getConnection时
            max-active: 100   #最大连接池数量
            min-idle: 10      #最小连接池数量
            max-wait: 60000   #获取连接时最大等待时间,单位毫秒。
            pool-prepared-statements: true    #是否缓存preparedStatement,也就是PSCache
            max-open-prepared-statements: 100 #要启用PSCache,必须配置大于0,当大于0时,poolPreparedStatements自动触发修改为true。
            max-pool-prepared-statement-per-connection-size: 20
            time-between-eviction-runs-millis: 60000
            min-evictable-idle-time-millis: 300000
            validation-query: SELECT 1 FROM DUAL  #验证连接有效性
            test-while-idle: true   #建议配置为true,不影响性能,并且保证安全性。
            test-on-borrow: false   #申请连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能。
            test-on-return: false   #归还连接时执行validationQuery检测连接是否有效,做了这个配置会降低性能
            stat-view-servlet:      #内置监控
                enabled: true
                url-pattern: /druid/*
                #login-username: admin
                #login-password: admin
            filter:
                stat:
                    log-slow-sql: true
                    slow-sql-millis: 1000
                    merge-sql: true
                wall:
                    config:
                        multi-statement-allow: true #是否允许一次执行多条语句,缺省关闭

在pom.xml中添加依赖

<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>1.3.0</version>
</dependency>

在application.yml添加如下配置

# Mybatis配置
mybatis:
    mapperLocations: classpath:mapper/**/*.xml
    typeAliasesPackage: com.xiaohan.bootdemo.entity
    #config-location: classpath:mybatis.xml

mapperLocations 扫描mapper.xml文件
typeAliasesPackage 为实体类型起别名

接下来别名包下新建一个Entity类

package com.xiaohan.bootdemo.entity;
import java.util.Date;

public class UserEntity {
    private Integer id;
    private String name;
    private Date createTime;

    //省略get set
}

Entity类与数据库中的t_user表对应


image.png

接下来新建一个接口 在该接口中编写 对表进行增删查改的方法
要注意接口上的@Mapper注解

package com.xiaohan.bootdemo.dao;
import com.xiaohan.bootdemo.entity.UserEntity;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;

@Mapper
public interface UserDao {

    @Insert({"insert into t_user (name,create_time) values (#{name},#{createTime})"})
    int insert(UserEntity userEntity);
}

在测试之前先配置好日志 查看sql语句
在resources文件夹下新建 logback-spring.xml

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <include resource="org/springframework/boot/logging/logback/base.xml" />
    <logger name="org.springframework.web" level="DEBUG"/>
    <logger name="org.springboot.sample" level="TRACE" />
    <!-- 配置要打印日志的包 -->
    <logger name="com.xiaohan.bootdemo" level="DEBUG" />
</configuration>

编写测试类进行测试

package com.xiaohan.bootdemo;

import com.xiaohan.bootdemo.dao.UserDao;
import com.xiaohan.bootdemo.entity.UserEntity;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class BootdemoApplicationTests {

    @Autowired
    private UserDao userDao;

    @Test
    public void insertTest() {
        UserEntity userEntity = new UserEntity();
        userEntity.setName("张三");
        int insert = userDao.insert(userEntity);
        Integer id = userEntity.getId();
        System.err.println("影响行数==>" + insert);
        System.err.println("id==>" + id);
    }
}

输出如下

影响行数==>1
id==>null

可以看到id的值为null 要得到id的值还需要以下两步

  1. 数据库的id设为自增长
  2. 在方法上添加注解 @Options
@Insert({"insert into t_user (name,create_time) values (#{name},#{createTime})"})
@Options(useGeneratedKeys = true, keyProperty = "id")
int insert(UserEntity userEntity);

重新运行测试类

影响行数==>1
id==>2

后面我就不一一写了 直接把UserDao跟测试类贴出来了

UserDao 在update那里 使用了jdk1.8的新特性 可以在接口里面写被default修饰的方法

package com.xiaohan.bootdemo.dao;

import com.xiaohan.bootdemo.entity.UserEntity;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.time.DateFormatUtils;
import org.apache.ibatis.annotations.*;
import org.apache.ibatis.jdbc.SQL;
import org.springframework.stereotype.Repository;

import java.util.List;

@Repository
@Mapper
public interface UserDao {

    @Insert({"insert into t_user (name,create_time) values (#{name},#{createTime})"})
    @Options(useGeneratedKeys = true, keyProperty = "id")
    int insert(UserEntity userEntity);

    @Select({"select * from t_user"})
    List<UserEntity> selectAll();

    @Select({"select * from t_user where id=#{id}"})
    UserEntity selectById(Integer id);

    @Delete({"delete from t_user where id=#{id}"})
    int deleteById(Integer id);

    @Update({"${value}"})
    int update(String sql);
    default int updateById(UserEntity userEntity) {
        return update(new SQL() {{
            UPDATE("t_user");
            if (userEntity.getName() != null) {
                SET("name=" + StringUtils.wrap(userEntity.getName(), "\'"));
            }
            if (userEntity.getCreateTime() != null) {
                String format = DateFormatUtils.format(userEntity.getCreateTime(), "yyyy-MM-dd HH:mm:ss");
                SET("create_time=" + StringUtils.wrap(format, "\'"));
            }
            WHERE("id=" + userEntity.getId());
        }}.toString());
    }
}

测试类

package com.xiaohan.bootdemo;

import com.xiaohan.bootdemo.dao.UserDao;
import com.xiaohan.bootdemo.entity.UserEntity;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import java.util.Date;
import java.util.List;

@RunWith(SpringRunner.class)
@SpringBootTest
public class BootdemoApplicationTests {

    @Autowired
    private UserDao userDao;

    @Test
    public void insertTest() {
        UserEntity userEntity = new UserEntity();
        userEntity.setName("李四");
        int i = userDao.insert(userEntity);
        Integer id = userEntity.getId();
        System.err.println("影响行数==>" + i);
        System.err.println("id==>" + id);
    }

    @Test
    public void selectAllTest() {
        List<UserEntity> list = userDao.selectAll();
        for (UserEntity userEntity:
             list) {
            System.err.println(userEntity);
        }
    }

    @Test
    public void selectByIdTest() {
        UserEntity userEntity = userDao.selectById(1);
        System.err.println(userEntity);
    }

    @Test
    public void deleteTest() {
        int i = userDao.deleteById(1);
        System.err.println("影响行数==>" + i);
        selectAllTest();
    }

    @Test
    public void updateByIdTest() {
        UserEntity userEntity = new UserEntity();
        userEntity.setId(2);
        userEntity.setName("王五");
        userEntity.setCreateTime(new Date());
        int i = userDao.updateById(userEntity);
        System.err.println("影响行数==>" + i);
        selectAllTest();
    }
}
影响行数==>1
2017-08-09 20:33:45.569 DEBUG 11588 --- [           main] c.x.bootdemo.dao.UserDao.selectAll       : ==> Parameters: 
UserEntity{id=2, name='王五', createTime=null}
UserEntity{id=3, name='李四', createTime=null}

当直接updateByIdTest方法后可以看到 怎么王五的createTime是null呢
是因为数据库中是create_time跟createTime不匹配造成的
需要增加 map-underscore-to-camel-case: true

# Mybatis配置
mybatis:
    mapperLocations: classpath:mapper/**/*.xml
    typeAliasesPackage: com.xiaohan.bootdemo.entity
    #config-location: classpath:mybatis.xml
    configuration:
      map-underscore-to-camel-case: true  #使用驼峰法映射属性

之后就能看到时间了

UserEntity{id=2, name='王五', createTime=Wed Aug 09 20:42:44 CST 2017}
UserEntity{id=3, name='李四', createTime=null}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容