| | |
| | | package com.ruoyi.framework.config; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.DbType; |
| | | import com.baomidou.mybatisplus.autoconfigure.ConfigurationCustomizer; |
| | | import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler; |
| | | import com.baomidou.mybatisplus.core.incrementer.IKeyGenerator; |
| | | import com.baomidou.mybatisplus.core.incrementer.IdentifierGenerator; |
| | | import com.baomidou.mybatisplus.core.injector.DefaultSqlInjector; |
| | | import com.baomidou.mybatisplus.core.injector.ISqlInjector; |
| | | import com.baomidou.mybatisplus.extension.incrementer.H2KeyGenerator; |
| | | import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; |
| | | import com.baomidou.mybatisplus.extension.plugins.inner.BlockAttackInnerInterceptor; |
| | | import com.baomidou.mybatisplus.extension.plugins.inner.IllegalSQLInnerInterceptor; |
| | | import com.baomidou.mybatisplus.extension.plugins.inner.OptimisticLockerInnerInterceptor; |
| | | import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; |
| | | import com.ruoyi.framework.mybatisplus.CreateAndUpdateMetaObjectHandler; |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.transaction.annotation.EnableTransactionManagement; |
| | | |
| | | /** |
| | | * mybatis-plus配置类 |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @EnableTransactionManagement(proxyTargetClass = true) |
| | | @Configuration |
| | | // 指定要扫描的Mapper类的包的路径 |
| | | @MapperScan("${mybatis-plus.mapperPackage}") |
| | | public class MybatisPlusConfig { |
| | | |
| | | @Bean |
| | |
| | | // 乐观锁插件 |
| | | interceptor.addInnerInterceptor(optimisticLockerInnerInterceptor()); |
| | | // 阻断插件 |
| | | interceptor.addInnerInterceptor(blockAttackInnerInterceptor()); |
| | | // interceptor.addInnerInterceptor(blockAttackInnerInterceptor()); |
| | | return interceptor; |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * 新的分页插件,一缓和二缓遵循mybatis的规则,需要设置 MybatisConfiguration#useDeprecatedExecutor = false 避免缓存出现问题(该属性会在旧插件移除后一同移除) |
| | | */ |
| | | @Bean |
| | | public ConfigurationCustomizer configurationCustomizer() { |
| | | return configuration -> configuration.setUseDeprecatedExecutor(false); |
| | | } |
| | | |
| | | /** |
| | | * 乐观锁插件 |
| | | * https://baomidou.com/guide/interceptor-optimistic-locker.html |
| | | */ |
| | |
| | | * 如果是对全表的删除或更新操作,就会终止该操作 |
| | | * https://baomidou.com/guide/interceptor-block-attack.html |
| | | */ |
| | | public BlockAttackInnerInterceptor blockAttackInnerInterceptor() { |
| | | return new BlockAttackInnerInterceptor(); |
| | | } |
| | | // public BlockAttackInnerInterceptor blockAttackInnerInterceptor() { |
| | | // return new BlockAttackInnerInterceptor(); |
| | | // } |
| | | |
| | | /** |
| | | * sql性能规范插件(垃圾SQL拦截) |
| | |
| | | */ |
| | | // public IllegalSQLInnerInterceptor illegalSQLInnerInterceptor() { |
| | | // return new IllegalSQLInnerInterceptor(); |
| | | // } |
| | | |
| | | /** |
| | | * Sequence主键策略 IdType.INPUT 时使用 |
| | | * 内置支持: |
| | | * |
| | | * DB2KeyGenerator |
| | | * H2KeyGenerator |
| | | * KingbaseKeyGenerator |
| | | * OracleKeyGenerator |
| | | * PostgreKeyGenerator |
| | | * https://baomidou.com/guide/sequence.html |
| | | */ |
| | | // @Bean |
| | | // public IKeyGenerator keyGenerator() { |
| | | // return new H2KeyGenerator(); |
| | | // } |
| | | |
| | | |
| | |
| | | * 元对象字段填充控制器 |
| | | * https://baomidou.com/guide/auto-fill-metainfo.html |
| | | */ |
| | | // @Bean |
| | | // public MetaObjectHandler metaObjectHandler() { |
| | | // return new MyMetaObjectHandler(); |
| | | // } |
| | | @Bean |
| | | public MetaObjectHandler metaObjectHandler() { |
| | | return new CreateAndUpdateMetaObjectHandler(); |
| | | } |
| | | |
| | | /** |
| | | * sql注入器配置 |