From 76017830189f55063ee945c263e7ad6a9e69f394 Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Tue, 21 May 2024 09:41:40 +0800 Subject: [PATCH] =?UTF-8?q?feat:mybatisPlus=E5=A2=9E=E5=BC=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/hyp/framework/config/MybatisPlusConfig.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/hyp-framework/src/main/java/com/hyp/framework/config/MybatisPlusConfig.java b/hyp-framework/src/main/java/com/hyp/framework/config/MybatisPlusConfig.java index daa6406..3917145 100644 --- a/hyp-framework/src/main/java/com/hyp/framework/config/MybatisPlusConfig.java +++ b/hyp-framework/src/main/java/com/hyp/framework/config/MybatisPlusConfig.java @@ -23,8 +23,7 @@ import org.springframework.context.annotation.Bean; public class MybatisPlusConfig { @Bean - public MybatisPlusInterceptor mybatisPlusInterceptor() - { + public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); // 分页插件 interceptor.addInnerInterceptor(paginationInnerInterceptor()); @@ -38,8 +37,7 @@ public class MybatisPlusConfig { /** * 分页插件,自动识别数据库类型 https://baomidou.com/guide/interceptor-pagination.html */ - public PaginationInnerInterceptor paginationInnerInterceptor() - { + public PaginationInnerInterceptor paginationInnerInterceptor() { PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor(); // 设置数据库类型为mysql paginationInnerInterceptor.setDbType(DbType.MYSQL); @@ -51,16 +49,14 @@ public class MybatisPlusConfig { /** * 乐观锁插件 https://baomidou.com/guide/interceptor-optimistic-locker.html */ - public OptimisticLockerInnerInterceptor optimisticLockerInnerInterceptor() - { + public OptimisticLockerInnerInterceptor optimisticLockerInnerInterceptor() { return new OptimisticLockerInnerInterceptor(); } /** * 如果是对全表的删除或更新操作,就会终止该操作 https://baomidou.com/guide/interceptor-block-attack.html */ - public BlockAttackInnerInterceptor blockAttackInnerInterceptor() - { + public BlockAttackInnerInterceptor blockAttackInnerInterceptor() { return new BlockAttackInnerInterceptor(); } }