style: 添加 MybatisAdapterFlex 注释。

This commit is contained in:
Suomm 2023-06-28 10:06:52 +08:00
parent c2882dc9c9
commit d804a8fd8b

View File

@ -1,3 +1,19 @@
/*
* Copyright (c) 2022-2023, Mybatis-Flex (fuhai999@gmail.com).
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mybatisflex.solon.integration; package com.mybatisflex.solon.integration;
import com.mybatisflex.core.FlexGlobalConfig; import com.mybatisflex.core.FlexGlobalConfig;
@ -17,15 +33,19 @@ import org.noear.solon.core.event.EventBus;
import javax.sql.DataSource; import javax.sql.DataSource;
/** /**
* 适配器 for mybatis-flex * MyBatis-Flex 适配器
* *
* @author noear * @author noear
* @since 2.2 * @since 2.2
*/ */
public class MybatisAdapterFlex extends MybatisAdapterDefault { public class MybatisAdapterFlex extends MybatisAdapterDefault {
FlexSqlSessionFactoryBuilder factoryBuilderPlus; FlexSqlSessionFactoryBuilder factoryBuilderPlus;
FlexGlobalConfig globalConfig; FlexGlobalConfig globalConfig;
RowMapperInvoker rowMapperInvoker;
protected MybatisAdapterFlex(BeanWrap dsWrap) { protected MybatisAdapterFlex(BeanWrap dsWrap) {
super(dsWrap); super(dsWrap);
@ -107,25 +127,23 @@ public class MybatisAdapterFlex extends MybatisAdapterDefault {
return factory; return factory;
} }
RowMapperInvoker rowMapperInvoker;
@Override @Override
public void injectTo(VarHolder varH) { public void injectTo(VarHolder varH) {
super.injectTo(varH); super.injectTo(varH);
//@Db("db1") FlexGlobalConfig globalConfig; // @Db("db1") FlexGlobalConfig globalConfig
if (FlexGlobalConfig.class.isAssignableFrom(varH.getType())) { if (FlexGlobalConfig.class.isAssignableFrom(varH.getType())) {
varH.setValue(this.getGlobalConfig()); varH.setValue(this.getGlobalConfig());
return; return;
} }
//@Db("db1") RowMapperInvoker rowMapper; // @Db("db1") RowMapperInvoker rowMapper
if (RowMapperInvoker.class.equals(varH.getType())) { if (RowMapperInvoker.class.equals(varH.getType())) {
if (rowMapperInvoker == null) { if (rowMapperInvoker == null) {
rowMapperInvoker = new RowMapperInvoker(getFactory()); rowMapperInvoker = new RowMapperInvoker(getFactory());
} }
varH.setValue(rowMapperInvoker); varH.setValue(rowMapperInvoker);
return;
} }
} }
} }