MyBatisPlus效能分析外掛,條件構造器,程式碼自動生成器詳解

Asong臭狗屎發表於2020-08-07

效能分析外掛

我們在平時的開發中,會遇到一些慢sql,測試,druid
MP(MyBatisPlus)也提供效能分析外掛,如果超過這個時間就停止
不過官方在3.2版本的時候取消了,原因如下

條件構造器

十分重要: Wrapper
我們寫一些複雜查詢的時候

首先建立一個測試類

@SpringBootTest
public class MyBatisPlusWrapperTest {
    @Autowired
    private AirMapper airMapper;   
}

實體類

@Data
@EqualsAndHashCode(callSuper = false)
public class Air implements Serializable {

    private static final long serialVersionUID=1L;

      @TableId(value = "id", type = IdType.AUTO)
    private Long id;

    private Integer districtId;

      @TableField(fill = FieldFill.INSERT)
    private Date monitorTime;

    private Integer pm10;

    private Integer pm25;

    private String monitoringStation;

      @TableField(fill = FieldFill.INSERT)
    private Date lastModifyTime;

    @Version
    private Integer version;

    @TableLogic
    private Integer deleted;
}

建表語句(.sql檔案)

/*
 Navicat Premium Data Transfer

 Source Server         : wpsPractice1
 Source Server Type    : MySQL
 Source Server Version : 80020
 Source Host           : localhost:3306
 Source Schema         : air

 Target Server Type    : MySQL
 Target Server Version : 80020
 File Encoding         : 65001

 Date: 07/08/2020 11:44:27
*/

SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;

-- ----------------------------
-- Table structure for air
-- ----------------------------
DROP TABLE IF EXISTS `air`;
CREATE TABLE `air`  (
  `id` bigint unsigned NOT NULL,
  `district_id` int(0) NULL DEFAULT NULL,
  `monitor_time` datetime(0) NULL DEFAULT NULL,
  `pm10` int(0) NULL DEFAULT NULL,
  `pm25` int(0) NULL DEFAULT NULL,
  `monitoring_station` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
  `last_modify_time` datetime(0) NULL DEFAULT NULL,
  `version` int(0) NOT NULL DEFAULT 1,
  `deleted` int(0) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Records of air
-- ----------------------------
INSERT INTO `air` VALUES (4, 4, '2020-06-04 00:00:00', 22, 23, '哈哈哈哈站', '2020-07-15 00:00:00', 1, 1);
INSERT INTO `air` VALUES (5, 5, '2020-06-04 00:00:00', 22, 23, '哈哈哈哈站', '2020-07-15 00:00:00', 1, 0);
INSERT INTO `air` VALUES (6, 6, '2020-06-04 00:00:00', 22, 23, '哈哈哈哈站', '2020-07-15 00:00:00', 1, 0);
INSERT INTO `air` VALUES (7, 7, '2020-06-04 00:00:00', 22, 23, '休息休息站', '2020-08-19 00:00:00', 1, 0);
INSERT INTO `air` VALUES (8, 8, '2020-08-20 00:00:00', 33, 44, '嘎嘎嘎嘎站', '2020-08-27 00:00:00', 1, 0);
INSERT INTO `air` VALUES (9, 4, '2020-08-05 03:56:49', 33, 65, '哈馬屁', '2020-08-05 03:56:49', 1, 0);
INSERT INTO `air` VALUES (11, 11, '2020-08-05 03:51:08', 33, 65, '哈哈哈哈哈哈', '2020-08-05 03:51:08', 1, 0);
INSERT INTO `air` VALUES (222, 11, '2020-08-06 15:57:42', 33, 44, '快樂', '2020-08-19 15:57:59', 1, 0);
INSERT INTO `air` VALUES (1290858950387945474, 11, '2020-08-05 03:55:31', 33, 65, '哈哈哈哈哈哈', '2020-08-05 03:55:31', 1, 0);

SET FOREIGN_KEY_CHECKS = 1;

// 查詢一些使用者:
    // 查詢一下pm10為22且monitoring_station不為空的使用者,
    @Test
    public void test1(){
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.isNotNull("monitoring_station")//資料庫中的名字,而不是實體類中的名字
                .eq("pm10",22);
        List<Air> airList = airMapper.selectList(wrapper);//可以對比下map的查詢
        airList.forEach(System.out::println);//迴圈遍歷輸出
    }
    //查詢單個使用者
    @Test
    public void test2() {
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.eq("id",222);
        airMapper.selectOne(wrapper);
    }
    //Butween And
    //查詢pm25在40-60之間的使用者和數量
    @Test
    public void test3() {
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.between("pm25",40,60);//區間
        airMapper.selectList(wrapper).forEach(System.out::println);
        System.out.println(airMapper.selectCount(wrapper));//查詢結果數
    }
    //模糊查詢
    //查詢monitor_station中帶"站"的,切不帶"哈"的
    @Test
    public void test4() {
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.like("monitoring_station","站").notLike("monitoring_station","哈");
        airMapper.selectList(wrapper).forEach(System.out::println);
    }
    //查詢以哈開頭切以站結尾的 哈%  %站
    @Test
    public void test5() {
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.likeLeft("monitoring_station","站").likeRight("monitoring_station","哈");
        airMapper.selectList(wrapper).forEach(System.out::println);
    }
    //嵌入sql查詢
    @Test
    public void test6() {
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.inSql("district_id","select id from air where district_id = id");
        airMapper.selectObjs(wrapper).forEach(System.out::println);
    }
    //多表查詢
    //通過id進行排序
    @Test
    public void test7() {
        QueryWrapper<Air> wrapper = new QueryWrapper<>();
        wrapper.orderByDesc("id");
        airMapper.selectList(wrapper).forEach(System.out::println);
    }

程式碼生成器

匯入依賴

3.0.3版本以後程式碼生成器需要手動新增依賴

<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-generator</artifactId>
    <version>3.3.2</version>
</dependency>

根據前端的模板引擎匯入相應依賴(我沒寫前端頁面就隨便匯入了一個velocity的)記住一定要加入其中一個,否則會報錯

具體配置程式碼

package com.cloudcentury.mybatis;

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.config.DataSourceConfig;
import com.baomidou.mybatisplus.generator.config.GlobalConfig;
import com.baomidou.mybatisplus.generator.config.PackageConfig;
import com.baomidou.mybatisplus.generator.config.StrategyConfig;
import com.baomidou.mybatisplus.generator.config.po.TableFill;
import com.baomidou.mybatisplus.generator.config.rules.DateType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;

import java.util.ArrayList;

/**
 * ClassName:臭狗屎
 * Package:com.cloudcentury.mybatis
 *
 * @date:2020/8/7 10:22
 * @author:2628710400@qq.com Description:
 */
public class CodeAuto {
    public static void main(String[] args) {
        //需要構建一個程式碼自動生成器物件

        AutoGenerator ag = new AutoGenerator();//程式碼生辰器物件
        //配置執行策略
        //1.全域性配置
        GlobalConfig gc = new GlobalConfig();//全域性配置物件
        String property = System.getProperty("user.dir");//獲取專案名稱
        System.out.println(property);
        gc.setOutputDir(property+"/src/main/java");//設定程式碼存放路徑
        gc.setAuthor("臭狗屎");//設定作者
        gc.setOpen(false);//設定是否開啟資源管理器(生成完畢後)
        gc.setFileOverride(false);//是否覆蓋程式碼
        gc.setServiceName("%sService");//去掉Service的I字首
        gc.setIdType(IdType.AUTO);//設定id自動生成型別
        gc.setDateType(DateType.ONLY_DATE);//日期時間,僅僅時間
        gc.setSwagger2(false);//是否設定swagger
        ag.setGlobalConfig(gc);//將全域性配置放到裡面

        //設定資料來源
        DataSourceConfig desc = new DataSourceConfig();//資料來源配置物件
        //設定url
        desc.setUrl("jdbc:mysql://localhost:3306/air?characterEncoding=utf8&serverTimezone=GMT");
        desc.setDriverName("com.mysql.cj.jdbc.Driver");//設定驅動
        desc.setUsername("root");//設定使用者名稱
        desc.setPassword("12345");//設定密碼
        desc.setDbType(DbType.MYSQL);//設定資料庫型別
        ag.setDataSource(desc);//將資料來源放到裡面

        //包的配置
        //說白了就是說需要生成那些包,叫什麼
        PackageConfig pc = new PackageConfig();//包配置物件
        pc.setModuleName("com");//模組名字
        pc.setParent("com.cloudcentury");//父模組名字
        pc.setEntity("entity");//Entity包的名字
        pc.setMapper("mapper");//mapper包的名字
        pc.setService("service");//service包的名字
        pc.setController("controller");//controller包的名字
        ag.setPackageInfo(pc);//將包的配置放到裡面

        //策略配置
        StrategyConfig sc = new StrategyConfig();
        sc.setInclude("air","district"); //設定要對映的表名,這個一定要設定的
        sc.setNaming(NamingStrategy.underline_to_camel);//設定名字下劃線轉大寫
        sc.setColumnNaming(NamingStrategy.underline_to_camel);//設定列明下劃線轉大寫
        sc.setEntityLombokModel(true);//自動生成lombok
        sc.setLogicDeleteFieldName("deleted");//邏輯刪除的名字

        //自動填充配置
        TableFill monitor_time = new TableFill("monitor_time", FieldFill.INSERT);//執行插入是更新時間
        TableFill last_modify_time = new TableFill("last_modify_time", FieldFill.INSERT);//執行更新時執行的操作
        ArrayList<TableFill> tableFills = new ArrayList<>();//建立一個List
        tableFills.add(monitor_time);
        tableFills.add(last_modify_time);
        sc.setTableFillList(tableFills);//這裡只有這一個用list的方法
        sc.setVersionFieldName("version");  //樂觀鎖的配置
        sc.setRestControllerStyle(true);//開啟rest式的駝峰命名
        sc.setControllerMappingHyphenStyle(true);//下劃線命名:localhost:8080/hello_id_2
        ag.setStrategy(sc);//策略配置物件
        ag.execute();//執行
    }
}

相關文章