修改注释内容

This commit is contained in:
chxlay 2024-12-07 17:08:48 +08:00
parent 3ef1ed59ad
commit 305723961e
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ package com.mybatisflex.core.datasource.processor;
import java.lang.reflect.Method;
/**
* 动态数据源 @UseDataSource key 解析处理器,使用时推荐注入 DelegatingDataSourceProcessor{@link DelegatingDataSourceProcessor}
* 动态数据源 @UseDataSource的value值解析处理器(如表达式解析取值等),使用时推荐使用 DelegatingDataSourceProcessor{@link DelegatingDataSourceProcessor} 实例化
* 对动态数据源注解@UseDataSource 增强处理{@link com.mybatisflex.annotation.UseDataSource}
*
* @author Alay

View File

@ -62,7 +62,7 @@ public class FlexMapperProxy<T> extends MybatisMapperProxy<T> {
finalDsKey = getMethodDsKey(method, proxy);
}
// 对数据源取值进行动态取值处理(#)
// 对数据源取值进行动态取值处理
if (!StrUtil.isBlank(finalDsKey)) {
finalDsKey = DataSourceKey.processDataSourceKey(finalDsKey, proxy, method, args);
}