|
|
@@ -0,0 +1,63 @@
|
|
|
+package top.imwork.commons.dao.config;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.DbType;
|
|
|
+import com.baomidou.mybatisplus.core.incrementer.IKeyGenerator;
|
|
|
+import com.baomidou.mybatisplus.extension.incrementer.H2KeyGenerator;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
|
|
|
+import org.springframework.context.annotation.Bean;
|
|
|
+import org.springframework.context.annotation.Configuration;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Copyright (C), 2015-2021
|
|
|
+ * FileName: MybatisPlusConfig
|
|
|
+ * Author<作者姓名>: stars
|
|
|
+ * CreateTime<创建时间>: 2021/11/26 13:19
|
|
|
+ * UpdateTime<修改时间>: 2021/11/26 13:19
|
|
|
+ * Description〈功能简述〉: MybatisPlus配置文件
|
|
|
+ * History<历史描述>:
|
|
|
+ * Since<版本号>: 1.0.0
|
|
|
+ */
|
|
|
+@Configuration
|
|
|
+public class MybatisPlusConfig {
|
|
|
+
|
|
|
+ @Bean
|
|
|
+ public MybatisPlusInterceptor mybatisPlusInterceptor() {
|
|
|
+ MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
|
|
|
+ interceptor.addInnerInterceptor(paginationInnerInterceptor());
|
|
|
+ return interceptor;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 分页插件
|
|
|
+ * @return PaginationInnerInterceptor 分页拦截器
|
|
|
+ */
|
|
|
+ @Bean
|
|
|
+ public PaginationInnerInterceptor paginationInnerInterceptor(){
|
|
|
+ PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor();
|
|
|
+ paginationInnerInterceptor.setDbType(DbType.MYSQL);
|
|
|
+ return paginationInnerInterceptor;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 乐观锁
|
|
|
+ * 通过@Version注解使用
|
|
|
+ * @return OptimisticLockerInnerInterceptor 乐观锁拦截器
|
|
|
+ */
|
|
|
+ @Bean
|
|
|
+ public OptimisticLockerInnerInterceptor optimisticLockerInnerInterceptor(){
|
|
|
+ return new OptimisticLockerInnerInterceptor();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键生成
|
|
|
+ * ID_WORK 数字型id
|
|
|
+ * ID_WORK_STR 字符串类型id
|
|
|
+ * @return IKeyGenerator 主键生成策略
|
|
|
+ */
|
|
|
+ @Bean
|
|
|
+ public IKeyGenerator iKeyGenerator(){
|
|
|
+ return new H2KeyGenerator();
|
|
|
+ }
|
|
|
+}
|