All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.midcu.common.component.MybatisPlusConfig Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.midcu.common.component;

import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
@Slf4j
public class MybatisPlusConfig {

    /**
     * 添加分页插件
     */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();

//        TenantLineInnerInterceptor tenantInterceptor = new TenantLineInnerInterceptor();
//        tenantInterceptor.setTenantLineHandler(() -> new StringValue(StpUtil.getTokenSession().getString("tenantId")));
//
//        interceptor.addInnerInterceptor(tenantInterceptor);

        log.info("分页插件加载完毕!");

        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.POSTGRE_SQL)); // 如果配置多个插件, 切记分页最后添加
        // 如果有多数据源可以不配具体类型, 否则都建议配上具体的 DbType
        return interceptor;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy