File tree 1 file changed +3
-3
lines changed
APIJSON-Java-Server/APIJSONBoot/src/main/java/apijson/demo
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,13 +49,13 @@ public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> {
49
49
@ Override
50
50
public Connection getConnection (SQLConfig config ) throws Exception {
51
51
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 );
54
54
if (c == null || c .isClosed ()) {
55
55
try {
56
56
DataSource ds = DemoApplication .getApplicationContext ().getBean (DataSource .class );
57
57
// 另一种方式是 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 ());
59
59
} catch (Exception e ) {
60
60
Log .e (TAG , "getConnection try { "
61
61
+ "DataSource ds = DemoApplication.getApplicationContext().getBean(DataSource.class); .."
You can’t perform that action at this time.
0 commit comments