|
|
|
@ -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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|