1、什么是 Mybatis-Plus?
Mybatis-Plus(简称 MP)是一个 Mybatis 的增强工具,在 Mybatis 的基础上只做增强不做改变,为简化开发、提高效率而生。
2、Mybatis-Plus有什么用?
使用 Mybatis-Plus 工具,我们只需要将我们定义的抽象接口,继承一个公用的 BaseMapper 接口,就可以获得一组通用的 crud 方法来操作数据库使用 Mybatis-Plus 时,甚至不需要任何的 xml 映射文件或者接口方法注解,真正的 dao 层零实现。
Mybatis-Plus 只是在 Mybatis 的基础上,实现了功能增强,让开发更加简洁高效。
我们通过一个简单的 Demo 来进行 MyBatis-Plus 的入门体验,在此之前,我们需要准备:
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------
这是一个 User 表,他的结构结构如下:
与上面User表对应的数据库 Schema 脚本如下:
DROP TABLE IF EXISTS user;
CREATE TABLE user
(
id BIGINT(20) NOT NULL COMMENT '主键ID',
name VARCHAR(30) NULL DEFAULT NULL COMMENT '姓名',
age INT(11) NULL DEFAULT NULL COMMENT '年龄',
email VARCHAR(50) NULL DEFAULT NULL COMMENT '邮箱',
PRIMARY KEY (id)
);
与上面User表对应的数据库 Data 脚本如下:
DELETE FROM user;
INSERT INTO user (id, name, age, email) VALUES
(1, 'Jone', 18, '[email protected]'),
(2, 'Jack', 20, '[email protected]'),
(3, 'Tom', 28, '[email protected]'),
(4, 'Sandy', 21, '[email protected]'),
(5, 'Billie', 24, '[email protected]');
创建一个空的 Spring Boot 工程(工程将以 H2 作为默认数据库进行演示)
使用 Spring Initializer 快速初始化一个 Spring Boot 工程
(创建工程的时候我们会发现我们的IDEA没有Spring Initializer,是因为老版本的Spring Initializer变成了Spring Assistant)
(注意,这里idea默认使用https://start.spring.io提供的在线模板,所以需要保证网络畅通。 )
按实际情况依次填写项目信息。其中Type属性可以下拉选择project或者pom,Packaging属性可下拉选择jar或者war这里就不做过多叙述了。
你可以从左面选择大类,然后在窗口中间勾选需要的依赖。右边可以看到已选择的依赖项。
上边下拉框可以选择Spring Boot的版本
这里我选择了“Web”类别下的“ Spring Web”、“SQL”类别下的“H2 Database”。
设置项目名称Project name 和 工程保存路径 Project location。完成后,点击 Finish。
这样一个空的Spring boot工程就常见完毕。
设置maven以来为本地的
引入 Spring Boot Starter 父工程:
org.springframework.boot
spring-boot-starter-parent
2.3.3.RELEASE
引入 spring-boot-starter、spring-boot-starter-test、mybatis-plus-boot-starter、lombok、mysql依赖:
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-test
test
org.projectlombok
lombok
true
com.baomidou
mybatis-plus-boot-starter
3.3.2
com.h2database
h2
runtime
在 resources文件下application.yml 配置文件中添加Mysql 数据库的相关配置:
# DataSource Config
spring:
datasource:
driver-class-name: org.h2.Driver
schema: classpath:db/schema-h2.sql
data: classpath:db/data-h2.sql
url: jdbc:h2:mem:test
username: root
password: test
在 Spring Boot 启动类中添加 @MapperScan 注解,扫描 Mapper 文件夹:
@SpringBootApplication
@MapperScan("com.baomidou.mybatisplus.samples.quickstart.mapper")
public class Application {
public static void main(String[] args) {
SpringApplication.run(QuickStartApplication.class, args);
}
}
创建 User 实体类(此处使用了 Lombok 简化代码)
说明:使用 Mybatis-Plus 可以不使用 xml 文件,而是基于一组注解来解决实体类和数据库表的映射问题。
@TableName(value=“tb_user”) 指定对应的表,表名和类名一致时,可以省略 value 属性。
@TableId 指定表的主键。Value 属性指定表的主键字段,和属性名一致时,可以省略。Type指定主键的增长策略。
@TableField 指定类的属性映射的表字段,名称一致时可以省略该注解
@Data
public class User {
private Long id;
private String name;
private Integer age;
private String email;
}
编写Mapper类 UserMapper.java
public interface UserMapper extends BaseMapper {
}
添加测试类,进行功能测试:
@RunWith(SpringRunner.class)
@SpringBootTest
public class SampleTest {
@Autowired
private UserMapper userMapper;
@Test
public void testSelect() {
System.out.println(("----- selectAll method test ------"));
List userList = userMapper.selectList(null);
Assert.assertEquals(5, userList.size());
userList.forEach(System.out::println);
}
}
UserMapper 中的 selectList() 方法的参数为 MP 内置的条件封装器 Wrapper,不填写就是没有任何条件
控制台输出: