|
|
|
@ -1,12 +1,15 @@
|
|
|
|
package com.ruoyi.framework.config;
|
|
|
|
package com.ruoyi.framework.config;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.net.NetUtil;
|
|
|
|
import cn.hutool.core.net.NetUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.util.ObjUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
|
|
|
|
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
|
|
|
|
import com.baomidou.mybatisplus.core.incrementer.DefaultIdentifierGenerator;
|
|
|
|
import com.baomidou.mybatisplus.core.incrementer.DefaultIdentifierGenerator;
|
|
|
|
import com.baomidou.mybatisplus.core.incrementer.IdentifierGenerator;
|
|
|
|
import com.baomidou.mybatisplus.core.incrementer.IdentifierGenerator;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
|
|
|
|
|
|
|
|
import com.ruoyi.common.utils.IdUtils;
|
|
|
|
import com.ruoyi.framework.handler.CreateAndUpdateMetaObjectHandler;
|
|
|
|
import com.ruoyi.framework.handler.CreateAndUpdateMetaObjectHandler;
|
|
|
|
import com.ruoyi.framework.interceptor.PlusDataPermissionInterceptor;
|
|
|
|
import com.ruoyi.framework.interceptor.PlusDataPermissionInterceptor;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
import org.mybatis.spring.annotation.MapperScan;
|
|
|
|
@ -24,79 +27,108 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
|
|
|
|
@MapperScan("${mybatis-plus.mapperPackage}")
|
|
|
|
@MapperScan("${mybatis-plus.mapperPackage}")
|
|
|
|
public class MybatisPlusConfig {
|
|
|
|
public class MybatisPlusConfig {
|
|
|
|
|
|
|
|
|
|
|
|
@Bean
|
|
|
|
@Bean
|
|
|
|
public MybatisPlusInterceptor mybatisPlusInterceptor() {
|
|
|
|
public MybatisPlusInterceptor mybatisPlusInterceptor() {
|
|
|
|
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
|
|
|
|
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
|
|
|
|
// 数据权限处理
|
|
|
|
// 数据权限处理
|
|
|
|
interceptor.addInnerInterceptor(dataPermissionInterceptor());
|
|
|
|
interceptor.addInnerInterceptor(dataPermissionInterceptor());
|
|
|
|
// 分页插件
|
|
|
|
// 分页插件
|
|
|
|
interceptor.addInnerInterceptor(paginationInnerInterceptor());
|
|
|
|
interceptor.addInnerInterceptor(paginationInnerInterceptor());
|
|
|
|
// 乐观锁插件
|
|
|
|
// 乐观锁插件
|
|
|
|
interceptor.addInnerInterceptor(optimisticLockerInnerInterceptor());
|
|
|
|
interceptor.addInnerInterceptor(optimisticLockerInnerInterceptor());
|
|
|
|
return interceptor;
|
|
|
|
return interceptor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 数据权限拦截器
|
|
|
|
* 数据权限拦截器
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public PlusDataPermissionInterceptor dataPermissionInterceptor() {
|
|
|
|
public PlusDataPermissionInterceptor dataPermissionInterceptor() {
|
|
|
|
return new PlusDataPermissionInterceptor();
|
|
|
|
return new PlusDataPermissionInterceptor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 分页插件,自动识别数据库类型
|
|
|
|
* 分页插件,自动识别数据库类型
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public PaginationInnerInterceptor paginationInnerInterceptor() {
|
|
|
|
public PaginationInnerInterceptor paginationInnerInterceptor() {
|
|
|
|
PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor();
|
|
|
|
PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor();
|
|
|
|
// 设置最大单页限制数量,默认 500 条,-1 不受限制
|
|
|
|
// 设置最大单页限制数量,默认 500 条,-1 不受限制
|
|
|
|
paginationInnerInterceptor.setMaxLimit(-1L);
|
|
|
|
paginationInnerInterceptor.setMaxLimit(-1L);
|
|
|
|
// 分页合理化
|
|
|
|
// 分页合理化
|
|
|
|
paginationInnerInterceptor.setOverflow(true);
|
|
|
|
paginationInnerInterceptor.setOverflow(true);
|
|
|
|
return paginationInnerInterceptor;
|
|
|
|
return paginationInnerInterceptor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 乐观锁插件
|
|
|
|
* 乐观锁插件
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public OptimisticLockerInnerInterceptor optimisticLockerInnerInterceptor() {
|
|
|
|
public OptimisticLockerInnerInterceptor optimisticLockerInnerInterceptor() {
|
|
|
|
return new OptimisticLockerInnerInterceptor();
|
|
|
|
return new OptimisticLockerInnerInterceptor();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 元对象字段填充控制器
|
|
|
|
* 元对象字段填充控制器
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Bean
|
|
|
|
@Bean
|
|
|
|
public MetaObjectHandler metaObjectHandler() {
|
|
|
|
public MetaObjectHandler metaObjectHandler() {
|
|
|
|
return new CreateAndUpdateMetaObjectHandler();
|
|
|
|
return new CreateAndUpdateMetaObjectHandler();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 使用网卡信息绑定雪花生成器
|
|
|
|
* 使用网卡信息绑定雪花生成器
|
|
|
|
* 防止集群雪花ID重复
|
|
|
|
* 防止集群雪花ID重复
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Bean
|
|
|
|
// @Bean
|
|
|
|
public IdentifierGenerator idGenerator() {
|
|
|
|
// public IdentifierGenerator idGenerator() {
|
|
|
|
return new DefaultIdentifierGenerator(NetUtil.getLocalhost());
|
|
|
|
// return new DefaultIdentifierGenerator(NetUtil.getLocalhost());
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* PaginationInnerInterceptor 分页插件,自动识别数据库类型
|
|
|
|
* 使用自定义的id生成策略
|
|
|
|
* https://baomidou.com/pages/97710a/
|
|
|
|
* @return
|
|
|
|
* OptimisticLockerInnerInterceptor 乐观锁插件
|
|
|
|
*/
|
|
|
|
* https://baomidou.com/pages/0d93c0/
|
|
|
|
@Bean
|
|
|
|
* MetaObjectHandler 元对象字段填充控制器
|
|
|
|
public IdentifierGenerator idGenerator() {
|
|
|
|
* https://baomidou.com/pages/4c6bcf/
|
|
|
|
return new IdentifierGenerator() {
|
|
|
|
* ISqlInjector sql注入器
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/42ea4a/
|
|
|
|
@Override
|
|
|
|
* BlockAttackInnerInterceptor 如果是对全表的删除或更新操作,就会终止该操作
|
|
|
|
public boolean assignId(Object idValue) {
|
|
|
|
* https://baomidou.com/pages/f9a237/
|
|
|
|
if (idValue instanceof CharSequence) {
|
|
|
|
* IllegalSQLInnerInterceptor sql性能规范插件(垃圾SQL拦截)
|
|
|
|
return StrUtil.isBlank((CharSequence) idValue);
|
|
|
|
* IdentifierGenerator 自定义主键策略
|
|
|
|
}
|
|
|
|
* https://baomidou.com/pages/568eb2/
|
|
|
|
return ObjUtil.isNull(idValue);
|
|
|
|
* TenantLineInnerInterceptor 多租户插件
|
|
|
|
}
|
|
|
|
* https://baomidou.com/pages/aef2f2/
|
|
|
|
|
|
|
|
* DynamicTableNameInnerInterceptor 动态表名插件
|
|
|
|
@Override
|
|
|
|
* https://baomidou.com/pages/2a45ff/
|
|
|
|
public Number nextId(Object entity) {
|
|
|
|
*/
|
|
|
|
return IdUtils.nextDateIdLong(entity.getClass().getSimpleName(), 17);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public String nextUUID(Object entity) {
|
|
|
|
|
|
|
|
return IdUtils.nextDateId(entity.getClass().getSimpleName(), 17);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* PaginationInnerInterceptor 分页插件,自动识别数据库类型
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/97710a/
|
|
|
|
|
|
|
|
* OptimisticLockerInnerInterceptor 乐观锁插件
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/0d93c0/
|
|
|
|
|
|
|
|
* MetaObjectHandler 元对象字段填充控制器
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/4c6bcf/
|
|
|
|
|
|
|
|
* ISqlInjector sql注入器
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/42ea4a/
|
|
|
|
|
|
|
|
* BlockAttackInnerInterceptor 如果是对全表的删除或更新操作,就会终止该操作
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/f9a237/
|
|
|
|
|
|
|
|
* IllegalSQLInnerInterceptor sql性能规范插件(垃圾SQL拦截)
|
|
|
|
|
|
|
|
* IdentifierGenerator 自定义主键策略
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/568eb2/
|
|
|
|
|
|
|
|
* TenantLineInnerInterceptor 多租户插件
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/aef2f2/
|
|
|
|
|
|
|
|
* DynamicTableNameInnerInterceptor 动态表名插件
|
|
|
|
|
|
|
|
* https://baomidou.com/pages/2a45ff/
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|