首頁 > 軟體

MyBatis-Plus框架整合詳細方法

2022-04-07 13:02:49

MyBatis-Plus

MyBatis-Plus(簡稱 MP)是一個 MyBatis 的增強工具,在 MyBatis 的基礎上只做增強不做改變,為簡化開發、提高效率而生。

其特性有:

  • 無侵入:只做增強不做改變,引入它不會對現有工程產生影響,如絲般順滑
  • 損耗小:啟動即會自動注入基本 CURD,效能基本無失真耗,直接物件導向操作
  • 強大的 CRUD 操作:內建通用 Mapper、通用 Service,僅僅通過少量設定即可實現單表大部分 CRUD 操作,更有強大的條件構造器,滿足各類使用需求
  • 支援 Lambda 形式呼叫:通過 Lambda 表示式,方便的編寫各類查詢條件,無需再擔心欄位寫錯
  • 支援主鍵自動生成:支援多達 4 種主鍵策略(內含分散式唯一 ID 生成器 - Sequence),可自由設定,完美解決主鍵問題
  • 支援 ActiveRecord 模式:支援 ActiveRecord 形式呼叫,實體類只需繼承 Model 類即可進行強大的 CRUD 操作
  • 支援自定義全域性通用操作:支援全域性通用方法注入( Write once, use anywhere )
  • 內建程式碼生成器:採用程式碼或者 Maven 外掛可快速生成 Mapper 、 Model 、 Service 、 Controller 層程式碼,支援模板引擎,更有超多自定義設定等您來使用
  • 內建分頁外掛:基於 MyBatis 物理分頁,開發者無需關心具體操作,設定好外掛之後,寫分頁等同於普通 List 查詢
  • 分頁外掛支援多種資料庫:支援 MySQL、MariaDB、Oracle、DB2、H2、HSQL、SQLite、Postgre、SQLServer 等多種資料庫
  • 內建效能分析外掛:可輸出 Sql 語句以及其執行時間,建議開發測試時啟用該功能,能快速揪出慢查詢
  • 內建全域性攔截外掛:提供全表 delete 、 update 操作智慧分析阻斷,也可自定義攔截規則,預防誤操作

支援的資料庫有:

  • mysql 、 mariadb 、 oracle 、 db2 、 h2 、 hsql 、 sqlite 、 postgresql 、 sqlserver
  • 達夢資料庫 、 虛谷資料庫 、 人大金倉資料庫

官網

引入依賴

        <!--mybatis-plus-boot-starter 包含了mybatis的所有依賴-->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.4.2</version>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
            <version>3.4.1</version>
        </dependency>
        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
            <version>2.3.28</version>
        </dependency>
                <!--推薦大家使用阿里巴巴的druid的連線池-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.2.8</version>
        </dependency>
        <!--引入mysql資料庫相關依賴-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>

yml設定

spring:
  application:
    name: manage-client
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource
    driver-class-name: com.mysql.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/mysql?userSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8
    username: root
    password: ys@2017
  main:
    allow-circular-references: true

#mybatis-plus設定
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  mapper-locations: classpath:com/huangyabei/mapper/xml/*.xml

主啟動類加上包掃碼

@SpringBootApplication(scanBasePackages = {"com.win.sky"})
@MapperScan(basePackages="com.win.sky.dao")
@EnableDiscoveryClient
public class SaasAdminApplication {
    public static void main(String[] args) {
        SpringApplication.run(SaasAdminApplication.class, args);
    }
}

自動生產程式碼介面util

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.annotation.FieldFill;
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.NamingStrategy;

import java.util.Arrays;
import java.util.List;

public class MyBatisPlusGenerate {

    public static void main(String[] args) {

        //建立generator物件:通過操作這個物件來生成程式碼
        AutoGenerator autoGenerator = new AutoGenerator();
        //資料來源:建立資料來源與資料庫連線
        DataSourceConfig dataSourceConfig = new DataSourceConfig();
        dataSourceConfig.setDbType(DbType.MYSQL);//選擇資料庫的型別
        //資料來源
        dataSourceConfig.setDriverName("com.mysql.cj.jdbc.Driver");
        //賬號
        dataSourceConfig.setUsername("root");
        //密碼
        dataSourceConfig.setPassword("ys@2017");
        //連線地址
        dataSourceConfig.setUrl("jdbc:mysql://192.168.10.77:3306/yszh_gw?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai");
        autoGenerator.setDataSource(dataSourceConfig);
        //全域性設定
        GlobalConfig globalConfig = new GlobalConfig();
        globalConfig.setOutputDir("D:/generatingCode/test/main/java");//放到子工程裡,修改了路徑  //這裡個人建議經歷不要直接放在公司專案裡面,避免覆蓋已經寫好的程式碼,
        globalConfig.setAuthor("yszh-gw");
        globalConfig.setOpen(false);
        globalConfig.setServiceName("%sService");
        autoGenerator.setGlobalConfig(globalConfig);
        //包資訊
        PackageConfig packageConfig = new PackageConfig();
        packageConfig.setParent("com.win.sky.news");
        packageConfig.setEntity("entity");
        packageConfig.setMapper("mapper");
        packageConfig.setService("service");
        packageConfig.setServiceImpl("service.impl");
        packageConfig.setController("controller");
        autoGenerator.setPackageInfo(packageConfig);
        //策略設定
        StrategyConfig strategyConfig = new StrategyConfig();
        strategyConfig.setInclude("t_test","t_order");//有新的表往裡面加就是了
        strategyConfig.setNaming(NamingStrategy.underline_to_camel);//資料庫表對映到實體的命名策略駝峰命名
        strategyConfig.setTablePrefix(packageConfig.getModuleName() + "t_");//生成實體時去掉表字首
        strategyConfig.setColumnNaming(NamingStrategy.underline_to_camel);//資料庫表欄位對映到實體的命名策略
        strategyConfig.setEntityLombokModel(true);
        TableFill tableFill = new TableFill("create_time", FieldFill.INSERT);
        TableFill tableFill1 = new TableFill("update_time", FieldFill.INSERT_UPDATE);
        List<TableFill> tableFills = Arrays.asList(tableFill,tableFill1);
        strategyConfig.setTableFillList(tableFills);
        autoGenerator.setStrategy(strategyConfig);
        //執行
        autoGenerator.execute();
    }

}

擴充套件

mybatis-plus在使用過程中類似JPA框架

自定義介面繼承了mybatis-plus框架提供的這個IService介面之後,基本的CRUD方法都可以直接使用

Mybatis-plus提供了分頁查詢方法

Page<TenantVo> page = new Page<>(pageNum,pageSize);

MyBatis-plus提供的條件拼接物件

QueryWrapper<TenantVo> qw = new QueryWrapper<>();

自定義sql查詢
在實際開發過程中,可能涉及到多表複雜查詢,簡單的sql已經不適合使用,這樣的情況下,我們可以通過自定義sql配合QueryWrapper條件拼接物件使用

        SELECT md.id,
               md.name,
               md.menus_id,
               md.coding,
               md.data_id,
               md.remark,
               md.create_by,
               md.create_time,
               md.update_by,
               md.update_time,
               d.name dataName,
               d.rule
                 FROM t_menus_data md
                 LEFT JOIN t_data_permission d on d.id = md.data_id
--下面的程式碼就是用例接收服務層傳過來的拼接的條件引數                 
        <where>
            ${ew.sqlSegment}
        </where>

mapper層

    IPage<MenusDataEntity> pageVo(@Param("page") IPage<MenusDataEntity> page, @Param(Constants.WRAPPER) QueryWrapper<MenusDataEntity> qw);

service層

        IPage<MenusDataEntity> page = new Page<>(pageNum,pageSize);
        QueryWrapper<MenusDataEntity> qw = new QueryWrapper<>();
        // 查詢新增環節篩選需求
        qw.eq("md.menus_id",menusId);
        if (!StrUtil.isEmpty(name)){
            qw.like("md.name",name);
        }
        IPage<MenusDataEntity> menusDataEntityIPage = menusDataMapper.pageVo(page,qw);

到此這篇關於MyBatis-Plus框架整合的文章就介紹到這了,更多相關MyBatis-Plus框架整合內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com