特性:
-
无侵入:只做增强不做改变,引入它不会对现有工程产生影响,如丝般顺滑
-
损耗小:启动即会自动注入基本 CURD,性能基本无损耗,直接面向对象操作,BaseMapper
-
强大的 CRUD 操作:内置通用 Mapper、通用 Service,仅仅通过少量配置即可实现单表大部分 CRUD 操作,更有强大的条件构造器,满足各类使用需求,以后简单的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 操作智能分析阻断,也可自定义拦截规则,预防误操作
一、mybatis-puls快速搭建
1、添加依赖
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.0</version>
</dependency>
2、添加配置
# mybatis_plus插件
mybatis_plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
global-config:
db-config:
logic-delete-value: 1
logic-not-delete-value: 0
3、添加配置类
下面的方法是乐观锁和分页所用到的配置
//mapper接口所在的包,可以扫描包下的mapper接口
@MapperScan("com.chen.mapper")
@EnableTransactionManagement
@Configuration
public class MyBatisPulsConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
//乐观锁插件
interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
//分页插件
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
return interceptor;
}
}
4、搭建数据库
安照官网的快速开始将数据库搭建好
5、创建实体类
@Data
@NoArgsConstructor
@AllArgsConstructor
public class User {
private Long id;
private String name;
private Integer age;
private String email;
private Date createTime;
private Date updateTime;
@Version
private Integer version;
@TableLogic
private Integer deleted;
}
6、创建mapper接口
@Repository
public interface UserMapper extends BaseMapper<User> {
}
7、编写测试类
@SpringBootTest
class Springboot01ApplicationTests {
@Autowired
private UserMapper userMapper;
//查询全部用户,加入逻辑删除后,查询结果不包括逻辑删除的数据
@Test
void getUserList(){
userMapper.selectList(null).forEach(System.out::println);
}
//根据map查询用户,有多个键值对就是有多个查询条件,插件会自动帮我们拼接
@Test
void getUserListByMap(){
HashMap<String, Object> map = new HashMap<>();
map.put("name","张三");
userMapper.selectByMap(map).forEach(System.out::println);
}
@Test
void addUser(){
User user = new User();
user.setName("张三");
user.setAge(19);
user.setEmail("11017@qq.com");
userMapper.insert(user);
}
//乐观锁,先查询再修改,底层会拿version字段作条件,修改后version+1
@Test
void updateUser(){
User user = userMapper.selectById(3);
user.setName("王五");
user.setAge(30);
userMapper.updateById(user);
}
//逻辑删除,底层使用的是update语句,修改deleted字段的值
@Test
void deleteUser(){
userMapper.deleteById(3);
}
//分页查询
@Test
void selectPage(){
userMapper.selectPage(new Page<>(1, 4), null)
.getRecords().forEach(System.out::println);
}
//wrapper用于生成 sql 的 where 条件,条件都可以用wrapper添加进去
@Test
void selectTest01(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.eq("name", "张三");
userMapper.selectList(wrapper).forEach(System.out::println);
}
}