Skip to content

Commit 99718e0

Browse files
author
longjieyi
committed
fix:getConnection 方法内的key的构建格式修复
1 parent a7bfd02 commit 99718e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

APIJSON-Java-Server/APIJSONBoot/src/main/java/apijson/demo/DemoSQLExecutor.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> {
4949
@Override
5050
public Connection getConnection(SQLConfig config) throws Exception {
5151
Log.d(TAG, "getConnection config.getDatasource() = " + config.getDatasource());
52-
53-
Connection c = connectionMap.get(config.getDatabase());
52+
String connectionKey = config.getDatasource() + "-" + config.getDatabase();
53+
Connection c = connectionMap.get(connectionKey);
5454
if (c == null || c.isClosed()) {
5555
try {
5656
DataSource ds = DemoApplication.getApplicationContext().getBean(DataSource.class);
5757
// 另一种方式是 DruidConfig 初始化获取到 Datasource 后给静态变量 DATA_SOURCE 赋值: ds = DruidConfig.DATA_SOURCE.getConnection();
58-
connectionMap.put(config.getDatabase(), ds == null ? null : ds.getConnection());
58+
connectionMap.put(connectionKey, ds == null ? null : ds.getConnection());
5959
} catch (Exception e) {
6060
Log.e(TAG, "getConnection try { "
6161
+ "DataSource ds = DemoApplication.getApplicationContext().getBean(DataSource.class); .."

0 commit comments

Comments
 (0)