农妇山泉一亩田 发表于 2024-9-17 02:58:55

一篇了解: MyBatis-Plus 操纵数据库的使用

目录
一、MyBatis-Plus介绍
二、基础使用 
2.1 准备工作
2.2 编码
2.3 CRUD单元测试
三、MyBatis-Plus复杂操纵
3.1 打印日志
3.2 常见注解
3.2.1 @TableName
3.2.2 @TableField
3.2.3 @TableId
3.3 条件构造器
3.3.1 QueryWrapper
3.3.2 UpdateWrapper
3.3.3 LambdaQueryWrapper 和 LambdaUpdateWrapper
一、MyBatis-Plus介绍

   MyBatis-Plus(简称 MP) 是一个 MyBatis 的加强工具,在 MyBatis 的基础上只做加强不做改变, 为简化开发,提高服从而生。    它支持多款数据库,如:PostgreSQL, MySQL, MariaDB, Oracle, SQL Server, OceanBase, H2, DB2...(任何能使用 MyBatis 举行增删改查,而且支持标准 SQL 的数据库应该都在 MyBatis-Plus 的支持范围内)    官网地点:https://baomidou.com/二、基础使用 

Mybatis-Plus操纵数据库的步调:

[*]准备工作(数据准备, 项目准备, 引入依靠, 配置数据库毗连信息)
[*]编码(数据库表对应的实体类, 以及数据操纵的Mapper文件)
[*]测试
以下使用详细的例子体现 MyBatis-Plus 是如何操纵数据库的。
2.1 准备工作

   创建用户表, 并创建对应的实体类User:-- 创建数据库
DROP DATABASE IF EXISTS mybatis_test;
CREATE DATABASE mybatis_test DEFAULT CHARACTER SET utf8mb4;
-- 使⽤数据数据
USE mybatis_test;
-- 创建表[⽤⼾表]
DROP TABLE IF EXISTS user_info;
CREATE TABLE `user_info` (
`id` INT ( 11 ) NOT NULL AUTO_INCREMENT,
`username` VARCHAR ( 127 ) NOT NULL,
`password` VARCHAR ( 127 ) NOT NULL,
`age` TINYINT ( 4 ) NOT NULL,
`gender` TINYINT ( 4 ) DEFAULT '0' COMMENT '1-男 2-⼥ 0-默认',
`phone` VARCHAR ( 15 ) DEFAULT NULL,
`delete_flag` TINYINT ( 4 ) DEFAULT 0 COMMENT '0-正常, 1-删除',
`create_time` DATETIME DEFAULT now(),
`update_time` DATETIME DEFAULT now(),
PRIMARY KEY ( `id` )
) ENGINE = INNODB DEFAULT CHARSET = utf8mb4;
-- 添加⽤⼾信息
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'admin', 'admin', 18, 1, '18612340001' );
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'zhangsan', 'zhangsan', 18, 1, '18612340002' );
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'lisi', 'lisi', 18, 1, '18612340003' );
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'wangwu', 'wangwu', 18, 1, '18612340004' );   创建springboot工程 ,添加MyBatis-Plus和MySQL依靠, 配置数据库毗连信息:       Spring Boot2       <dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.7</version>
</dependency>   Spring Boot3
   <dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>3.5.5</version>
</dependency>   MySQL
   <dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>   配置数据库:
   application.yml文件格式:
   # 数据库连接配置
spring:
datasource:
url: jdbc:mysql://127.0.0.1:3306/mybatis_test?characterEncoding=utf8&useSSL=false
username: root
password: root
driver-class-name: com.mysql.cj.jdbc.Driver       application.properties文件格式如下:            #驱动类名称
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#数据库连接的url
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/mybatis_test?
characterEncoding=utf8&useSSL=false
#连接数据库的⽤⼾名
spring.datasource.username=root
#连接数据库的密码
spring.datasource.password=root   2.2 编码

   创建实体类UserInfo
   import lombok.Data;

import java.util.Date;

@Data
public class UserInfo {
private Integer id;
private String username;
private String password;
private Integer age;
private Integer gender;
private String phone;
private Integer deleteFlag;
private Date createTime;
private Date updateTime;
}       编写Mapper接口类                MybatisPlus提供了一个基础的   BaseMapper   接口,已经实现了单表的CRUD, 自界说的 Mapper只需要继续这个BaseMapper, 就无需自己实现单表CRUD了。            https://i-blog.csdnimg.cn/direct/40967284c1f144328d42d43fb9e74de5.png         @Mapper
public interface UserInfoMapper extends BaseMapper<UserInfo> {
}

       也可以在启动类上添加 @MapperScan , 扫描Mapper文件夹, ⼆选一即可。
       2.3 CRUD单元测试

         在创建出来的SpringBoot工程中,在src下的test目录下,已经自动创建好了测试类 ,可以直接使用这个测试类来举行测试。编写几个单元测试,测试基本的CRUD功能:            @SpringBootTest
class MybatisPlusDemoApplicationTests {

@Autowired
private UserInfoMapper userInfoMapper;

@Test
void testInsert() {
   UserInfo user = new UserInfo();
   user.setUsername("bite");
   user.setPassword("123456");
   user.setAge(11);
   user.setGender(0);
   user.setPhone("18610001234");
   userInfoMapper.insert(user);
}

@Test
void testSelectById() {
UserInfo user = userInfoMapper.selectById(1L);
System.out.println("user: " + user);
}

@Test
void testSelectByIds() {
   List<UserInfo> users = userInfoMapper.selectBatchIds(List.of(1L, 2L, 3L, 4L));
   users.forEach(System.out::println);
}

@Test
void testUpdateById() {
   UserInfo user = new UserInfo();
   user.setId(1);
   user.setPassword("4444444");
   userInfoMapper.updateById(user);
}

@Test
void testDelete() {
   userInfoMapper.deleteById(5L);
}
}
   结果如下,执行成功:
   https://i-blog.csdnimg.cn/direct/46c981e600374199839d7547700d119b.png
    三、MyBatis-Plus复杂操纵

3.1 打印日志

mybatis-plus:
configuration: # 配置打印 MyBatis⽇志
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl 3.2 常见注解

      默认环境下:   
[*]表名: 实体类的驼峰表现法转换成蛇形表现法(下划线分割), 作为表名。比如UserInfo -> user_info
[*]字段: 根据实体类的属性名转换为蛇形表现法作为字段名。比如deleteFlag -> delete_flag
[*]         主键: 默认为id
         那如果实体类和数据库不是按照上述规则界说的呢? MyBatis-Plus提供了一些注解,来标识表的信息。      3.2.1 @TableName

       通过   @TableName   来标识实体类对应的表:    @Data
@TableName("user_info")
public class Userinfo {
    private Integer id;
    private String username;
    private String password;
    private Integer age;
    private Integer gender;
    private String phone;
    private Integer deleteFlag;
    private Date createTime;
    private Date updateTime;
}      3.2.2 @TableField

       通过   @TableField 来标识对应的字段名:         @Data
@TableName("user_info")
   public class Userinfo {
   private Integer id;
   private String username;
   private String password;
   private Integer age;
   private Integer gender;
   private String phone;

@TableField("delete_flag")
   private Integer deleteflag;
   private Date createTime;
   private Date updateTime;
}          3.2.3 @TableId

       通过   @TableId   来指定对应的主键:       @Data
@TableName("user_info")
   public class Userinfo {
   
@TableId("id")
   private Integer userId;
   private String username;
   private String password;
   private Integer age;
   private Integer gender;
   private String phone;

@TableField("delete_flag")
   private Integer deleteflag;
   private Date createTime;
   private Date updateTime;
} 3.3 条件构造器

MyBatis-Plus 提供了一套强大的条件构造器(Wrapper),用于构建复杂的数据库查询条件。Wrapper 类允许开发者以链式调用的方式构造查询条件,无需编写繁琐的 SQL 语句,从而提高开发服从并减少 SQL注入的风险。
      以下是紧张的 Wrapper 类及其功能:   

[*]AbstractWrapper:这是⼀个抽象基类, 提供了所有 Wrapper 类共有的方法和属性。
[*]QueryWrapper:用于构造查询条件, 在AbstractWrapper的基础上拓展了一个select方法, 允许指定查询字段。
[*]UpdateWrapper: 用于构造更新条件, 可以在更新数据时指定条件。
[*]LambdaQueryWrapper:基于 Lambda 表达式的查询条件构造器, 它通过 Lambda 表达式来引用实体类的属性,从而制止了硬编码字段名。
[*]LambdaUpdateWrapper: 基于 Lambda 表达式的更新条件构造器, 它允许你使用 Lambda 表达 式来指定更新字段和条件,同样制止了硬编码字段名的问题。
3.3.1 QueryWrapper

   QueryWrapper并不只用于查询语句, 无论是修改, 删除, 查询, 都可以使用QueryWrapper来构建查询条件。查询:
@Test
void testQueryWrapper(){
QueryWrapper<UserInfo> userInfoQueryWrapper = new QueryWrapper<UserInfo>()
.select("id","username","password","age")
.eq("age",18)
.like("username", "min");

List<UserInfo> userInfos = userInfoMapper.selectList(userInfoQueryWrapper);
userInfos.forEach(System.out::println);
} 更新:
@Test
void testUpdateByQueryWrapper(){
QueryWrapper<UserInfo> userInfoQueryWrapper = new QueryWrapper<UserInfo>()
.lt("age", 20);

UserInfo userInfo = new UserInfo();
userInfo.setDeleteFlag(1);
userInfoMapper.update(userInfo, userInfoQueryWrapper);
}      • lt : "less than" 的缩写,表现小于;       • le : "less than or equal to"的缩写,表现小于等于;       • ge : "greater than or equal to" 的缩写,表现大于等于;       • gt : "greater than" 的缩写,表现大于;       • eq : "equals" 的缩写,表现等于;       • ne : "not equals" 的缩写,表现不等于;    删除:
@Test
void testDeleteByQueryWrapper(){
QueryWrapper<UserInfo> userInfoQueryWrapper = new QueryWrapper<UserInfo>()
.eq("age",18);

userInfoMapper.delete(userInfoQueryWrapper); 3.3.2 UpdateWrapper

   对于更新, 也可以直接使用 UpdateWrapper, 在不创建实体对象的环境下, 直接设置更新字段和条件。   

[*]基础更新:
   完成下述SQL查询:       UPDATE user_info SET delete_flag=0, age=5 WHERE id IN (1,2,3)   测试代码:
       @Test
void testUpdateByUpdateWrapper(){
UpdateWrapper<UserInfo> updateWrapper = new UpdateWrapper<UserInfo>()
       .set("delete_flag",0)
       .set("age", 5)
       .in("id", List.of(1,2,3));
userInfoMapper.update(updateWrapper);
}   

[*]基于SQL更新:
   完成下述SQL查询:       UPDATE user_info SET age = age+10 WHERE id IN (1,2,3)   测试代码:
   @Test
void testUpdateBySQLUpdateWrapper(){
UpdateWrapper<UserInfo> updateWrapper = new UpdateWrapper<UserInfo>()
          .setSql("age = age+10")
          .in("id", List.of(1,2,3));
userInfoMapper.update(updateWrapper);
}   3.3.3 LambdaQueryWrapper 和 LambdaUpdateWrapper

     QueryWrapper 和 UpdateWrapper存在一个问题,就是需要写死字段名,如果字段名发生变动, 可能会由于测试不到位变成事故。MyBatis-Plus 给我们提供了一种基于Lambda表达式的条件构造器, 它通过 Lambda 表达式来引用实体类的属性,从而制止了硬编码字段名,,也提高了代码的可读性和可维护性。
LambdaQueryWrapper  和  LambdaUpdateWrapper 分别对应上述的 QueryWrapper 和 UpdateWrapper。
用法:
@Test
void testLambdaQueryWrapper(){
QueryWrapper<UserInfo> queryWrapper = new QueryWrapper<UserInfo>();
queryWrapper.lambda()
.select(UserInfo::getUsername, UserInfo::getPassword,UserInfo::getAge)
.eq(UserInfo::getUserId, 1);
userInfoMapper.selectList(queryWrapper).forEach(System.out::println);
}   @Test
void testLambdUpdateByUpdateWrapper(){
UpdateWrapper<UserInfo> updateWrapper = new UpdateWrapper<UserInfo>();
updateWrapper.lambda()
.set(UserInfo::getDeleteFlag, 0)
.set(UserInfo::getAge, 5)
.in(UserInfo::getUserId, List.of(1,2,3));
userInfoMapper.update(updateWrapper);
}
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 一篇了解: MyBatis-Plus 操纵数据库的使用