| | |
| | | package com.linghu.config; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.DbType; |
| | | import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; |
| | | import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor; |
| | | import org.mybatis.spring.annotation.MapperScan; |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | |
| | | @Configuration |
| | | @MapperScan("com.linghu.mapper") |
| | | public class MybatisPlusConfig { |
| | | public class MyBatisPlusConfig { |
| | | |
| | | /** |
| | | * 添加分页插件 |
| | | */ |
| | | @Bean |
| | | public MybatisPlusInterceptor mybatisPlusInterceptor() { |
| | | MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); |
| | | interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); // 如果配置多个插件, 切记分页最后添加 |
| | | // 如果有多数据源可以不配具体类型, 否则都建议配上具体的 DbType |
| | | // 添加分页插件,这里可指定数据库类型(如 MySQL),也可默认 |
| | | interceptor.addInnerInterceptor(new PaginationInnerInterceptor()); |
| | | return interceptor; |
| | | } |
| | | } |