如有神助!阿里P7大牛把Spring Boot讲解得如此透彻,送你上岸

Hello,今天给各位童鞋们分享Spring Boot,赶紧拿出小本子记下来吧!

Spring Boot 整合 Druid

概述

Druid 是阿里巴巴开源平台上的一个项目,整个项目由数据库连接池、插件框架和 SQL 解析器组成。该项目主要是为了扩展 JDBC 的一些限制,可以让程序员实现一些特殊的需求,比如向密钥服务请求凭证、统计 SQL 信息、SQL 性能收集、SQL 注入检查、SQL 翻译等,程序员可以通过定制来实现自己需要的功能。

Druid 是目前最好的数据库连接池,在功能、性能、扩展性方面,都超过其他数据库连接池,包括 DBCP、C3P0、BoneCP、Proxool、JBoss DataSource。Druid 已经在阿里巴巴部署了超过 600 个应用,经过多年生产环境大规模部署的严苛考验。Druid 是阿里巴巴开发的号称为监控而生的数据库连接池!

引入依赖

在 pom.xml 文件中引入 druid-spring-boot-starter 依赖

<dependency>

    <groupId>com.alibaba</groupId>

    <artifactId>druid-spring-boot-starter</artifactId>

    <version>1.1.10</version>

</dependency>

引入数据库连接依赖

    <groupId>mysql</groupId>

    <artifactId>mysql-connector-java</artifactId>

    <scope>runtime</scope>

配置 application.yml

在 application.yml中配置数据库连接

spring:

  datasource:

url: jdbc:mysql://ip:port/dbname?useUnicode=true&characterEncoding=utf-8&useSSL=false

    username: root

    password: 123456

    type: com.alibaba.druid.pool.DruidDataSource

    initial-size: 1

    min-idle: 1

    max-active: 20

    test-on-borrow: true

    # MySQL 8.x: com.mysql.cj.jdbc.Driver

    driver-class-name: com.mysql.jdbc.Driver

MySQL服务使用docker容器开启

Spring Boot 整合 tk.mybatis

tk.mybatis 是在 MyBatis 框架的基础上提供了很多工具,让开发更加高效

在 pom.xml 文件中引入 mapper-spring-boot-starter 依赖,该依赖会自动引入MyBaits 相关依赖

    <groupId>tk.mybatis</groupId>

    <artifactId>mapper-spring-boot-starter</artifactId>

    <version>2.0.2</version>

配置 MyBatis

mybatis:

       type-aliases-package: 实体类的存放路径,如:com.zysheep.spring.boot.mybatis.entity

    mapper-locations: classpath:mapper/*.xml

创建一个通用的父级接口

主要作用是让 DAO层的接口继承该接口,以达到使用 tk.mybatis的目的,特别注意:该接口不能被扫描到,否则会出错

package tk.mybatis;

import tk.mybatis.mapper.common.Mapper;

import tk.mybatis.mapper.common.MySqlMapper;

/**

 *自己的 Mapper

 * @author :zysheep

 * @date :Created in 2020/1/11 22:49

 * @description:${description}

 * @version: ${version}$

 */

public interface MyMapper<T> extends Mapper<T>, MySqlMapper<T> {

}

Spring Boot 整合 PageHelper

PageHelper 是 Mybatis 的分页插件,支持多数据库、多数据源。可以简化数据库的分页查询操作,整合过程也极其简单,只需引入依赖即可。

在 pom.xml 文件中引入 pagehelper-spring-boot-starter 依赖

    <groupId>com.github.pagehelper</groupId>

    <artifactId>pagehelper-spring-boot-starter</artifactId>

    <version>1.2.5</version>

使用 MyBatis 的 Maven 插件生成代码

我们无需手动编写 实体类、DAO、XML 配置文件,只需要使用 MyBatis 提供的一个 Maven 插件就可以自动生成所需的各种文件便能够满足基本的业务需求,如果业务比较复杂只需要修改相关文件即可。

配置插件

在pom.xml 文件中增加mybatis-generator-maven-plugin 插件,configurationFile:自动生成所需的配置文件路径

自动生成的配置

在 src/main/resources/generator/目录下创建 generatorConfig.xml

 配置文件:

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE generatorConfiguration

        PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"

        "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

<generatorConfiguration>

    <!-- 引入数据库连接配置 -->

    <properties resource="jdbc.properties"/>

    <context id="Mysql" targetRuntime="MyBatis3Simple" defaultModelType="flat">

        <property name="beginningDelimiter" value="`"/>

        <property name="endingDelimiter" value="`"/>

        <!-- 配置 tk.mybatis 插件-->

        <plugin type="tk.mybatis.mapper.generator.MapperPlugin">

            <property name="mappers" value="cn.tk.mybatis.MyMapper"/>

        </plugin>

        <!-- 配置数据库连接 -->

        <jdbcConnection

                driverClass="${jdbc.driverClass}"

                connectionURL="${jdbc.connectionURL}"

                userId="${jdbc.username}"

                password="${jdbc.password}">

        </jdbcConnection>

        <!-- 配置实体类存放路径 -->

        <javaModelGenerator targetPackage="cn.panyucable.pojo" targetProject="src/main/java"/>

        <!-- 配置 XML 存放路径 -->

        <sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources"/>

        <!-- 配置 DAO 存放路径 -->

        <javaClientGenerator

                targetPackage="cn.panyucable.mapper"

                targetProject="src/main/java"

                type="XMLMAPPER"/>

        <!-- 配置需要指定生成的数据库和表,% 代表所有表 -->

        <table catalog="panyucable_cn" tableName="%">

            <!-- mysql 配置 -->

            <generatedKey column="id" sqlStatement="Mysql" identity="true"/>

        </table>

    </context>

</generatorConfiguration>

配置数据源

在 src/main/resources目录下创建 jdbc.properties

 数据源配置:

# MySQL 8.x: com.mysql.cj.jdbc.Driver

jdbc.driverClass=com.mysql.jdbc.Driver

jdbc.connectionURL=jdbc:mysql://ip:port/dbname?useUnicode=true&characterEncoding=utf-8&useSSL=false

jdbc.username=root

jdbc.password=root

插件自动生成命令

mvn mybatis-generator:generate

测试 MyBatis 操作数据库

使用 tk.mybatis 操作数据库

修改入口类

创建测试类

@RunWith(SpringRunner.class)

@SpringBootTest(classes = HelloSpringBootApplication.class)

@Transactional

@Rollback

public class MyBatisTests {

    /**

     * 注入数据查询接口

     */

    @Autowired

    private TbUserMapper tbUserMapper;

     * 测试插入数据

    @Test

    public void testInsert() {

        // 构造一条测试数据

        TbUser tbUser = new TbUser();

        tbUser.setUsername("Lusifer");

        tbUser.setPassword("123456");

        tbUser.setPhone("15888888888");

        tbUser.setEmail("topsale@vip.qq.com");

        tbUser.setCreated(new Date());

        tbUser.setUpdated(new Date());

        // 插入数据

        tbUserMapper.insert(tbUser);

    }

     * 测试删除数据

    public void testDelete() {

        // 构造条件,等同于 DELETE from tb_user WHERE username = 'Lusifer'

        Example example = new Example(TbUser.class);

        example.createCriteria().andEqualTo("username", "Lusifer");

        //删除数据

        tbUserMapper.deleteByExample(example);

     * 测试修改数据

    public void testUpdate() {

        // 构造条件

        tbUser.setUsername("LusiferNew");

        // 修改数据

        tbUserMapper.updateByExample(tbUser, example);

     * 测试查询集合

    public void testSelect() {

        List<TbUser> tbUsers = tbUserMapper.selectAll();

        for (TbUser tbUser : tbUsers) {

            System.out.println(tbUser.getUsername());

        }

     * 测试分页查询

    public void testPage() {

        // PageHelper 使用非常简单,只需要设置页码和每页显示笔数即可

        PageHelper.startPage(0, 2);

        // 设置分页查询条件

        PageInfo<TbUser> pageInfo = new PageInfo<>(tbUserMapper.selectByExample(example));

        // 获取查询结果

        List<TbUser> tbUsers = pageInfo.getList();

    //当前页

    private int pageNum;

    //每页的数量

    private int pageSize;

    //当前页的数量

    private int size;

    //由于startRow和endRow不常用,这里说个具体的用法

    //可以在页面中"显示startRow到endRow 共size条数据"

    //当前页面第一个元素在数据库中的行号

    private int startRow;

    //当前页面最后一个元素在数据库中的行号

    private int endRow;

    //总记录数

    private long total;

    //总页数

    private int pages;

    //结果集

    private List<T> list;

    //前一页

    private int prePage;

    //下一页

    private int nextPage;

    //是否为第一页

    private boolean isFirstPage = false;

    //是否为最后一页

    private boolean isLastPage = false;

    //是否有前一页

    private boolean hasPreviousPage = false;

    //是否有下一页

    private boolean hasNextPage = false;

    //导航页码数

    private int navigatePages;

    //所有导航页号

    private int[] navigatepageNums;

    //导航条上的第一页

    private int navigateFirstPage;

    //导航条上的最后一页

    private int navigateLastPage;

TkMybatis的常用方法介绍

Select

List select(T record);

根据实体中的属性值进行查询,查询条件使用等号

T selectByPrimaryKey(Object key);

根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号

List selectAll();

查询全部结果,select(null)方法能达到同样的效果

T selectOne(T record);

根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号

int selectCount(T record);

根据实体中的属性查询总数,查询条件使用等号

Insert

int insert(T record);

保存一个实体,null的属性也会保存,不会使用数据库默认值

int insertSelective(T record);

保存一个实体,null的属性不会保存,会使用数据库默认值

Update

int updateByPrimaryKey(T record);

根据主键更新实体全部字段,null值会被更新

int updateByPrimaryKeySelective(T record);

根据主键更新属性不为null的值

Delete

int delete(T record);

根据实体属性作为条件进行删除,查询条件使用等号

int deleteByPrimaryKey(Object key);

根据主键字段进行删除,方法参数必须包含完整的主键属性

Example方法

List selectByExample(Object example);

根据Example条件进行查询

重点: 这个查询支持通过 Example 类指定查询列,通过 selectProperties 方法指定查询列

int selectCountByExample(Object example);

根据Example条件进行查询总数

int updateByExample(@Param(“record”) T record, @Param(“example”) Object example);

根据Example条件更新实体 record 包含的全部属性,null值会被更新

int updateByExampleSelective(@Param(“record”) T record, @Param(“example”) Object example);

根据Example条件更新实体 record 包含的不是null的属性值

int deleteByExample(Object example);

根据Example条件删除数据

Example 使用方法详解

Example用于添加条件,相当where后面的部分

作用:

example

用来放一些去重,排序,分类,分页等信息

criteria

用来传字段参数

常用的方法及使用说明:

首先进行初始化: 

Example example = new Example(实体类.class);

Example.Criteria criteria = example.createCriteria();

添加升序排列条件,DESC为降序:

example.setOrderByClause("字段名 ASC");

去除重复,boolean型,true为选择不重复的记录:

example.setDistinct(false)

添加字段xxx为null的条件:

criteria.andXxxIsNull

添加字段xxx不为null的条件:

criteria.andXxxIsNotNull

添加xxx字段等于value条件:

criteria.andXxxEqualTo(value)

添加xxx字段不等于value条件:

criteria.andXxxNotEqualTo(value)

添加xxx字段大于value条件:

criteria.andXxxGreaterThan(value)

添加xxx字段大于等于value条件:

criteria.andXxxGreaterThanOrEqualTo(value)

添加xxx字段小于value条件:

criteria.andXxxLessThan(value)

添加xxx字段小于等于value条件:

criteria.andXxxLessThanOrEqualTo(value)

添加xxx字段值在List<?>条件:

criteria.andXxxIn(List<?>)

添加xxx字段值不在List<?>条件:

criteria.andXxxNotIn(List<?>)

添加xxx字段值为value的模糊查询条件:

criteria.andXxxLike("%"+value+"%")

添加xxx字段值不为value的模糊查询条件:

criteria.andXxxNotLike("%"+value+"%"")

添加xxx字段值在value1和value2之间条件:

criteria.andXxxBetween(value1,value2)

添加xxx字段值不在value1和value2之间条件:

criteria.andXxxNotBetween(value1,value2)

需要注意的点:

首先要生成实例化及实例对应的example,然后记住一定要先初始化;

使用and和or方法进行判断时,“与”、“或”的逻辑关系分清,避免出现拿数据时出现重复拿或者逻辑冲突拿不到的情况;

mapper.selectByExample()方法里面应该传入的参数是example对象,而非其他的。

附:完整的 POM

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <parent>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-parent</artifactId>

        <version>2.2.2.RELEASE</version>

        <relativePath/> <!-- lookup parent from repository -->

    </parent>

    <groupId>com.zysheep</groupId>

    <artifactId>spring-boot-mybatis</artifactId>

    <version>1.0.0-SNAPSHOT</version>

    <name>spring-boot-mybatis</name>

    <description>Demo project for Spring Boot</description>

    <properties>

        <java.version>1.8</java.version>

    </properties>

    <dependencies>

        <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-thymeleaf</artifactId>

        </dependency>

            <artifactId>spring-boot-starter-web</artifactId>

            <artifactId>spring-boot-starter-test</artifactId>

            <scope>test</scope>

            <exclusions>

                <exclusion>

                    <groupId>org.junit.vintage</groupId>

                    <artifactId>junit-vintage-engine</artifactId>

                </exclusion>

            </exclusions>

            <groupId>com.alibaba</groupId>

            <artifactId>druid-spring-boot-starter</artifactId>

            <version>1.1.10</version>

            <groupId>mysql</groupId>

            <artifactId>mysql-connector-java</artifactId>

            <scope>runtime</scope>

            <groupId>tk.mybatis</groupId>

            <artifactId>mapper-spring-boot-starter</artifactId>

            <version>2.0.2</version>

            <groupId>com.github.pagehelper</groupId>

            <artifactId>pagehelper-spring-boot-starter</artifactId>

            <version>1.2.5</version>

            <groupId>junit</groupId>

            <artifactId>junit</artifactId>

            <version>4.12</version>

    </dependencies>

    <build>

        <plugins>

            <plugin>

                <groupId>org.springframework.boot</groupId>

                <artifactId>spring-boot-maven-plugin</artifactId>

            </plugin>

                <groupId>org.mybatis.generator</groupId>

                <artifactId>mybatis-generator-maven-plugin</artifactId>

                <version>1.3.5</version>

                <configuration>

                    <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>

                    <overwrite>true</overwrite>

                    <verbose>true</verbose>

                </configuration>

                <dependencies>

                    <dependency>

                        <groupId>mysql</groupId>

                        <artifactId>mysql-connector-java</artifactId>

                        <version>${mysql.version}</version>

                    </dependency>

                        <groupId>tk.mybatis</groupId>

                        <artifactId>mapper</artifactId>

                        <version>3.4.4</version>

                </dependencies>

        </plugins>

    </build>

</project>

好啦,今天的文章就到这里,希望能帮助到屏幕前迷茫的你们!

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

推荐阅读更多精彩内容