首页>代码>基于SpringBoot开发的知识库管理系统的设计与实现>/pb-cms/src/main/java/com/puboot/common/config/MybatisPlusConfig.java
package com.puboot.common.config;

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;
import org.springframework.transaction.annotation.EnableTransactionManagement;

/**
 * spring事务、MybatisPlus分页插件、mybatis包扫描等配置
 *
 * @author LinZhaoguan
 * @version V1.0
 * @date 2019年9月11日
 */
@EnableTransactionManagement
@Configuration
@MapperScan(basePackages = "com.puboot.module.admin.mapper")
public class MybatisPlusConfig {

    /**
     * 分页插件
     */
    @Bean
    public MybatisPlusInterceptor paginationInterceptor() {
        PaginationInnerInterceptor paginationInnerInterceptor = new PaginationInnerInterceptor();
        paginationInnerInterceptor.setMaxLimit(-1L);
        MybatisPlusInterceptor mybatisPlusInterceptor = new MybatisPlusInterceptor();
        mybatisPlusInterceptor.addInnerInterceptor(paginationInnerInterceptor);
        return mybatisPlusInterceptor;
    }
}
最近下载更多
xianyu091012  LV4 前天
allmy3  LV2 10月30日
255921158  LV5 9月11日
thsgli  LV8 8月21日
lllzzx  LV1 6月26日
TY0165  LV20 6月17日
xiaozhi丶  LV15 6月3日
最代码-宋家辉  LV61 4月25日
011026  LV1 4月17日
最近浏览更多
xianyu091012  LV4 前天
svn_77 11月5日
暂无贡献等级
allmy3  LV2 10月30日
bluerstar  LV1 10月23日
charleswang  LV7 10月21日
暂无贡献等级
hougui  LV1 10月14日
cgcggc 10月6日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友