chore: 统一部分命名风格

This commit is contained in:
2024-09-26 23:34:13 +08:00
parent 7666d56019
commit f85839559a
7 changed files with 22 additions and 22 deletions

View File

@@ -13,16 +13,10 @@
<description>ContiNew Starter 扩展模块 - 多租户 - MyBatis Plus ORM 模块</description>
<dependencies>
<!-- 核心模块 -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-starter-extension-tenant-core</artifactId>
</dependency>
<!-- MyBatis PlusMyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,简化开发、提高效率) -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<artifactId>mybatis-plus-extension</artifactId>
</dependency>
<!-- Dynamic Datasource基于 Spring Boot 的快速集成多数据源的启动器) -->
@@ -31,5 +25,11 @@
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
<optional>true</optional>
</dependency>
<!-- 核心模块 -->
<dependency>
<groupId>top.continew</groupId>
<artifactId>continew-starter-extension-tenant-core</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -26,7 +26,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import top.continew.starter.core.constant.PropertiesConstants;
import top.continew.starter.extension.tenant.handler.TenantLineHandlerImpl;
import top.continew.starter.extension.tenant.handler.DefaultTenantLineHandler;
/**
* 多租户自动配置
@@ -64,12 +64,12 @@ public class TenantAutoConfiguration {
}
/**
* 租户行级隔离处理器
* 租户行级隔离处理器(默认)
*/
@Bean
@ConditionalOnMissingBean
public TenantLineHandler tenantLineHandler(TenantProperties properties) {
return new TenantLineHandlerImpl(properties);
return new DefaultTenantLineHandler(properties);
}
}
}

View File

@@ -8,16 +8,16 @@ import top.continew.starter.extension.tenant.autoconfigure.TenantProperties;
import top.continew.starter.extension.tenant.context.TenantContextHolder;
/**
* 租户行级隔离处理器
* 默认租户行级隔离处理器
*
* @author Charles7c
* @since 2.7.0
*/
public class TenantLineHandlerImpl implements TenantLineHandler {
public class DefaultTenantLineHandler implements TenantLineHandler {
private final TenantProperties tenantProperties;
public TenantLineHandlerImpl(TenantProperties tenantProperties) {
public DefaultTenantLineHandler(TenantProperties tenantProperties) {
this.tenantProperties = tenantProperties;
}