首页>代码>基于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;
    }
}
最近下载更多
xiexiaoming05  LV14 6月14日
liuqi1234  LV1 5月11日
lyosaki88  LV1 3月7日
xgs_wu  LV1 2月18日
lvyga1  LV2 2024年12月18日
xianyu091012  LV5 2024年11月19日
allmy3  LV2 2024年10月30日
微信网友_7044194812350464  LV8 2024年9月13日
255921158  LV5 2024年9月11日
最近浏览更多
jiuliuge  LV2 11月11日
暂无贡献等级
777744 11月5日
暂无贡献等级
洛雨_luoyu 11月3日
暂无贡献等级
a134136 9月22日
暂无贡献等级
yuyuhshbbja 9月15日
暂无贡献等级
20031030 8月7日
暂无贡献等级
暂无贡献等级
xiexiaoming05  LV14 6月14日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友