package com.iailab.framework.tenant.config; import com.iailab.framework.tenant.core.rpc.TenantRequestInterceptor; import com.iailab.module.system.api.tenant.TenantApi; import org.springframework.boot.autoconfigure.AutoConfiguration; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @AutoConfiguration @ConditionalOnProperty(prefix = "iailab.tenant", value = "enable", matchIfMissing = true) // 允许使用 iailab.tenant.enable=false 禁用多租户 @EnableFeignClients(clients = TenantApi.class) // 主要是引入相关的 API 服务 public class IailabTenantRpcAutoConfiguration { @Bean public TenantRequestInterceptor tenantRequestInterceptor() { return new TenantRequestInterceptor(); } }