![JAR search and dependency download from the Maven repository](/logo.png)
love.keeping.starter.web.utils.TenantUtil Maven / Gradle / Ivy
The newest version!
package love.keeping.starter.web.utils;
import love.keeping.starter.web.common.utils.ApplicationUtil;
import love.keeping.starter.web.config.properties.TenantProperties;
public class TenantUtil {
/**
* 是否启用多租户
* @return
*/
public static boolean enableTenant() {
TenantProperties properties = ApplicationUtil.getBean(TenantProperties.class);
return properties.getEnabled();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy