MyBatis-Plus使用ActiveRecord(AR)实现CRUD

 更新时间:2021年07月05日 15:31:51   作者:张起灵-小哥  
本文将结合实例代码,介绍MyBatis-Plus使用ActiveRecord(AR)实现CRUD,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习吧

1.什么是ActiveRecord(AR)?

ActiveRecord 是什么:

  • 每一个数据库表应该对应创建一个实体类,类的每一个对象的实例对应于数据库中表的一行记录; 通常表的每个字段在类中都有相应的方法Field;
  • ActiveRecord 负责把自己持久化. 在 ActiveRecord 中封装了对数据库的访问,通过对象自己实现 CRUD,实现优雅的数据库操作。
  • ActiveRecord 也封装了部分业务逻辑。可以作为业务对象使用。

2.通过AR实现CRUD

首先创建一张表。

创建一个SpringBoot工程,在pom文件中添加依赖。

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
 
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
            <version>5.1.9</version>
        </dependency>
 
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.0.5</version>
        </dependency>

在核心配置文件中,配置数据库相关的连接信息。

#配置数据库的相关连接信息
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/springdb?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=12345678
 
#配置对应的日志信息
mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

创建一个实体类,要使用AR,那么实体类就必须继承MP框架中的Model这个类。

package com.szh.mybatisplus.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.extension.activerecord.Model;
 
/**
 * 使用AR,要求实体类必须继承MP框架中的Model类
 * Model类中提供了数据库相关的CRUD操作
 */
public class Dept extends Model<Dept> {
 
    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;
    private String name;
    private String mobile;
    private Integer manager;
 
    //getter and setter
    //toString
}

可以从Model类的源码中看到,这其中定义了大量关于CRUD操作的方法。

创建一个mapper接口。这里虽然不使用 mapper,但也需要定义这个它,MP 通过 mapper 获取到表的结构;不定义时,MP 报错无法获取表的结构信息。

package com.szh.mybatisplus.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.szh.mybatisplus.entity.Dept;
 
/**
 *
 */
public interface DeptMapper extends BaseMapper<Dept> {
}

在SpringBoot项目的启动入口类上方,添加@MapperScan注解,确保可以扫描到MyBatis、MP下的相关注解。

package com.szh.mybatisplus;
 
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
 
@SpringBootApplication
@MapperScan(value = "com.szh.mybatisplus.mapper")
public class Application {
 
    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
 
}

1.1 insert

    @Test
    void testDeptInsert() {
        Dept dept=new Dept();
        dept.setName("销售部");
        dept.setMobile("12345678900");
        dept.setManager(1);
 
        //调用实体类对象自己的方法,完成对象自身到数据库的添加操作
        boolean flag=dept.insert();
        System.out.println("insert的结果:" + flag);
    }

1.2 update

    @Test
    void testDeptUpdate() {
        Dept dept=new Dept();
        dept.setId(1);
        dept.setName("研发部");
        dept.setMobile("99999999999");
        dept.setManager(2);
 
        //调用实体类对象自己的方法,完成对象自身到数据库的更新操作
        boolean flag=dept.updateById();
        System.out.println("update的结果:" + flag);
    }

1.3 delete

    @Test
    void testDeptDelete() {
        Dept dept=new Dept();
        boolean result = dept.deleteById(2);
        System.out.println("delete的结果:" + result);
    }

    @Test
    void testDeptDelete2() {
        Dept dept=new Dept();
        dept.setId(2);
        boolean result = dept.deleteById();
        System.out.println("delete的结果:" + result);
    }

1.4 select

    @Test
    void testSelect() {
        Dept dept=new Dept();
        dept.setId(3);
        Dept dept1 = dept.selectById();
        System.out.println("select的结果:" + dept1);
    }

    @Test
    void testSelect2() {
        Dept dept=new Dept();
        Dept dept1 = dept.selectById(3);
        System.out.println("select的结果:" + dept1);
    }

    @Test
    void testSelect3() {
        Dept dept=new Dept();
        List<Dept> deptList=dept.selectAll();
        deptList.forEach( dept1 -> {
            System.out.println(dept1);
        });
    }

到此这篇关于MyBatis-Plus使用ActiveRecord(AR)实现CRUD的文章就介绍到这了,更多相关MyBatis-Plus实现CRUD内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Spring中@Scheduled注解的参数详解

    Spring中@Scheduled注解的参数详解

    这篇文章主要介绍了Spring中@Scheduled注解的参数详解,@Scheduled注解的使用这里不详细说明,@Scheduled注解有几个参数需要说明一下,直接对8个参数进行讲解,需要的朋友可以参考下
    2023-11-11
  • Spring中如何动态注入Bean实例教程

    Spring中如何动态注入Bean实例教程

    这篇文章主要给大家介绍了关于Spring中如何动态注入Bean的相关资料,文中通过示例代码介绍的非常详细,对大家学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧。
    2017-12-12
  • mybatis的好帮手之MybatisCodeHelperPro详解

    mybatis的好帮手之MybatisCodeHelperPro详解

    这篇文章主要介绍了mybatis的好帮手之MybatisCodeHelperPro详解,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-09-09
  • 关于Spring Cache 缓存拦截器( CacheInterceptor)

    关于Spring Cache 缓存拦截器( CacheInterceptor)

    这篇文章主要介绍了关于Spring Cache缓存拦截器( CacheInterceptor),具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-12-12
  • Mybatis如何配置连接池

    Mybatis如何配置连接池

    本文通过实例代码给大家详细介绍了mybatis配置连接池的方法,非常不错,具有参考借鉴价值,感兴趣的朋友参考下吧
    2016-12-12
  • 浅聊java8中数值流的使用

    浅聊java8中数值流的使用

    java8为我提供的简单快捷的数值流计算API,本文就基于几个常见的场景介绍一下数值流API的使用,文中的示例代码讲解详细,感兴趣的小伙伴可以了解下
    2023-10-10
  • Spring Boot Event Bus用法小结

    Spring Boot Event Bus用法小结

    Spring Boot Event Bus是Spring框架中事件驱动编程的一部分,本文主要介绍了Spring Boot Event Bus用法小结,感兴趣的可以了解一下
    2023-09-09
  • Spring实现源码下载编译及导入IDEA过程图解

    Spring实现源码下载编译及导入IDEA过程图解

    这篇文章主要介绍了Spring实现源码下载编译及导入IDEA,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
    2020-07-07
  • java实现查找替换功能

    java实现查找替换功能

    这篇文章主要为大家详细介绍了java实现查找替换功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-03-03
  • SpringBoot整合EasyExcel 3.x的完整示例

    SpringBoot整合EasyExcel 3.x的完整示例

    EasyExcel 是一个基于 Java 的、快速、简洁、解决大文件内存溢出的 Excel 处理工具,它能让你在不用考虑性能、内存的等因素的情况下,快速完成 Excel 的读、写等功能,这篇文章主要介绍了SpringBoot整合EasyExcel3.x的过程,需要的朋友可以参考下
    2023-07-07

最新评论