28 lines
802 B
Java
28 lines
802 B
Java
|
|
package com.xjs.config;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.annotation.DbType;
|
||
|
|
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
|
||
|
|
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
|
||
|
|
import org.springframework.context.annotation.Bean;
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author xiejs
|
||
|
|
* @desc
|
||
|
|
* @create 2021-12-31
|
||
|
|
*/
|
||
|
|
@Configuration
|
||
|
|
public class MybatisPlusConfig {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* mysql分页插件
|
||
|
|
* @return MybatisPlusInterceptor
|
||
|
|
*/
|
||
|
|
@Bean
|
||
|
|
public MybatisPlusInterceptor mybatisPlusInterceptor() {
|
||
|
|
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
|
||
|
|
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
|
||
|
|
return interceptor;
|
||
|
|
}
|
||
|
|
}
|