詳解基于MybatisPlus兩步實現(xiàn)多租戶方案
1.定義一個TenantLineHandler的實現(xiàn)類:
import com.baomidou.mybatisplus.extension.plugins.handler.TenantLineHandler;
import com.google.common.collect.Lists;
import net.sf.jsqlparser.expression.Expression;
import net.sf.jsqlparser.expression.LongValue;
import java.util.List;
/**
* 多租戶處理插件
*
* @author 向振華
* @date 2021/04/26 13:37
*/
public class CustomTenantLineHandler implements TenantLineHandler {
/**
* 忽略添加租戶ID的表
*/
private final static List<String> IGNORE_TABLE_NAMES = Lists.newArrayList(
"t_country",
"t_language"
);
/**
* 獲取租戶ID值表達式(可從cookie、token、緩存中取)
*
* @return
*/
@Override
public Expression getTenantId() {
return new LongValue(1L);
}
/**
* 獲取租戶字段名(數(shù)據(jù)庫的租戶ID字段名)
*
* @return
*/
@Override
public String getTenantIdColumn() {
return "tenant_id";
}
/**
* 根據(jù)表名判斷是否忽略拼接多租戶條件
*
* @param tableName
* @return
*/
@Override
public boolean ignoreTable(String tableName) {
return IGNORE_TABLE_NAMES.contains(tableName);
}
}
2.定義MybatisPlusConfig配置類將多租戶插件生效:
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.autoconfigure.ConfigurationCustomizer;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor;
import com.bzcst.bop.component.mybatis.config.handler.AutoFillMetaObjectHandler;
import com.bzcst.bop.component.mybatis.config.handler.CustomTenantLineHandler;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* @author 向振華
* @date 2021/04/26 14:45
*/
@Configuration
@MapperScan("scan.your.mapper.package")
public class MybatisPlusConfig {
@Bean
public MybatisPlusInterceptor mybatisPlusInterceptor() {
MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
// 多租戶插件(注意:這個一定要放在最上面)
interceptor.addInnerInterceptor(new TenantLineInnerInterceptor(new CustomTenantLineHandler()));
// 分頁插件
interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
return interceptor;
}
@Bean
public ConfigurationCustomizer configurationCustomizer() {
return configuration -> configuration.setUseDeprecatedExecutor(false);
}
@Bean
public AutoFillMetaObjectHandler fillMetaObjectHandler() {
return new AutoFillMetaObjectHandler();
}
}
測試
@Test
public void select() {
Role role = roleService.getById(40L);
System.out.println(role);
}
Creating a new SqlSession SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2fedfff1] was not registered for synchronization because synchronization is not active Original SQL: SELECT id,tenant_id,frame_id,name,type,description,meta_created,meta_updated,meta_logic_flag FROM t_sec_role WHERE id=? parser sql: SELECT id, tenant_id, frame_id, name, type, description, meta_created, meta_updated, meta_logic_flag FROM t_sec_role WHERE id = ? AND tenant_id = 1 2021-04-26 14:58:55.534 INFO 24980 --- [ main] com.zaxxer.hikari.HikariDataSource : DatebookHikariCP - Starting... 2021-04-26 14:58:55.903 INFO 24980 --- [ main] com.zaxxer.hikari.HikariDataSource : DatebookHikariCP - Start completed. JDBC Connection [HikariProxyConnection@1100660981 wrapping com.mysql.cj.jdbc.ConnectionImpl@628fa8ea] will not be managed by Spring ==> Preparing: SELECT id, tenant_id, frame_id, name, type, description, meta_created, meta_updated, meta_logic_flag FROM t_sec_role WHERE id = ? AND tenant_id = 1 ==> Parameters: 40(Long) <== Columns: id, tenant_id, frame_id, name, type, description, meta_created, meta_updated, meta_logic_flag <== Row: 40, 1, 123, 一個角色啊, 2, haha, 2021-04-26 14:07:42, 2021-04-26 14:07:42, 1 <== Total: 1 Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@2fedfff1] Role(id=40, sasTenantId=1, orgFrameId=123, name=一個角色啊, type=2, description=haha, metaCreated=Mon Apr 26 14:07:42 CST 2021, metaUpdated=Mon Apr 26 14:07:42 CST 2021, metaLogicFlag=1)
可以看到查詢語句后面拼接了tenant_id = 1
==> Preparing: SELECT id, tenant_id, frame_id, name, type, description, meta_created, meta_updated, meta_logic_flag FROM t_sec_role WHERE id = ? AND tenant_id = 1
注意:如果表中沒有定義tenant_id會報錯,不需要添加多租戶的表配置到CustomTenantLineHandler 中的IGNORE_TABLE_NAMES集合中
到此這篇關(guān)于詳解基于MybatisPlus兩步實現(xiàn)多租戶方案的文章就介紹到這了,更多相關(guān)MybatisPlus多租戶內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
MybatisPlus插件自動維護更新和創(chuàng)建時間方式
這篇文章主要介紹了MybatisPlus插件自動維護更新和創(chuàng)建時間方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2025-04-04
MyBatisPlus的IService接口實現(xiàn)
MyBatisPlus是一個為MyBatis提供增強的工具,它通過IService接口簡化了數(shù)據(jù)庫的CRUD操作,IService接口封裝了一系列常用的數(shù)據(jù)操作方法,本文就來介紹一下,感興趣的可以了解一下2024-10-10
SpringBoot 3.0 新特性內(nèi)置聲明式HTTP客戶端實例詳解
聲明式 http 客戶端主旨是使得編寫 java http 客戶端更容易,為了貫徹這個理念,采用了通過處理注解來自動生成請求的方式,本文給大家詳解介紹SpringBoot 聲明式HTTP客戶端相關(guān)知識,感興趣的朋友跟隨小編一起看看吧2022-12-12
關(guān)于mybatis調(diào)用存儲過程獲取返回值問題
這篇文章主要介紹了mybatis調(diào)用存儲過程獲取返回值問題,本文通過實例代碼給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-01-01

