-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathDemoSQLExecutor.java
More file actions
137 lines (114 loc) · 5.62 KB
/
DemoSQLExecutor.java
File metadata and controls
137 lines (114 loc) · 5.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
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
http://www.apache.org/licenses/LICENSE-2.0
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 apijson.demo;
import com.alibaba.druid.pool.DruidDataSource;
import com.vesoft.nebula.jdbc.impl.NebulaDriver;
import com.zaxxer.hikari.HikariDataSource;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Map;
import java.util.Properties;
import javax.sql.DataSource;
import apijson.Log;
import apijson.boot.DemoApplication;
import apijson.framework.APIJSONSQLExecutor;
import apijson.orm.SQLConfig;
/**SQL 执行器,支持连接池及多数据源
* 具体见 https://github.com/Tencent/APIJSON/issues/151
* @author Lemon
*/
public class DemoSQLExecutor extends APIJSONSQLExecutor {
public static final String TAG = "DemoSQLExecutor";
// 可重写以下方法,支持 Redis 等单机全局缓存或分布式缓存
// @Override
// public List<JSONObject> getCache(String sql, int type) {
// return super.getCache(sql, type);
// }
// @Override
// public synchronized void putCache(String sql, List<JSONObject> list, int type) {
// super.putCache(sql, list, type);
// }
// @Override
// public synchronized void removeCache(String sql, int type) {
// super.removeCache(sql, type);
// }
// 适配连接池,如果这里能拿到连接池的有效 Connection,则 SQLConfig 不需要配置 dbVersion, dbUri, dbAccount, dbPassword
@Override
public Connection getConnection(SQLConfig config) throws Exception {
if ("NEBULA".equals(config.getDatabase())) { // 3.0.0 及以下要这样连接
String uri = config.getDBUri();
int start = uri.indexOf("://");
String prefix = uri.substring(0, start);
uri = uri.substring(start + "://".length());
int end = uri.indexOf("/");
String space = uri.substring(end + 1);
Properties props = new Properties();
props.put("url", prefix + "://" + space);
props.put("graphSpace", space);
NebulaDriver driver = new NebulaDriver(uri.substring(0, end));
return driver.connect(prefix + "://" + space, props);
// return DriverManager.getConnection("jdbc:nebula://JDBC_TEST_SPACE", "root", "nebula");
}
String datasource = config.getDatasource();
Log.d(TAG, "getConnection config.getDatasource() = " + datasource);
String key = datasource + "-" + config.getDatabase();
Connection c = connectionMap.get(key);
if (datasource != null && (c == null || c.isClosed())) {
try {
DataSource ds;
switch (datasource) {
case "HIKARICP":
ds = DemoApplication.getApplicationContext().getBean(HikariDataSource.class);
// 另一种方式是 DemoDataSourceConfig 初始化获取到 DataSource 后给静态变量 DATA_SOURCE_HIKARICP 赋值: ds = DemoDataSourceConfig.DATA_SOURCE_HIKARICP.getConnection();
break;
default:
Map<String, DruidDataSource> dsMap = DemoApplication.getApplicationContext().getBeansOfType(DruidDataSource.class);
// 另一种方式是 DemoDataSourceConfig 初始化获取到 DataSource 后给静态变量 DATA_SOURCE_DRUID 赋值: ds = DemoDataSourceConfig.DATA_SOURCE_DRUID.getConnection();
switch (datasource) {
case "DRUID-TEST":
ds = dsMap.get("druidTestDataSource");
break;
case "DRUID-ONLINE":
ds = dsMap.get("druidOnlineDataSource");
break;
case "DRUID":
ds = dsMap.get("druidDataSource");
break;
default:
ds = null;
break;
}
break;
}
connectionMap.put(key, ds == null ? null : ds.getConnection());
} catch (Exception e) {
Log.e(TAG, "getConnection try { "
+ "DataSource ds = DemoApplication.getApplicationContext().getBean(DataSource.class); .."
+ "} catch (Exception e) = " + e.getMessage());
}
}
// 必须最后执行 super 方法,因为里面还有事务相关处理。
// 如果这里是 return c,则会导致 增删改 多个对象时只有第一个会 commit,即只有第一个对象成功插入数据库表
return super.getConnection(config);
}
// 取消注释支持 !key 反选字段 和 字段名映射,需要先依赖插件 https://github.com/APIJSON/apijson-column
// @Override
// protected String getKey(SQLConfig config, ResultSet rs, ResultSetMetaData rsmd, int tablePosition, JSONObject table,
// int columnIndex, Map<String, JSONObject> childMap) throws Exception {
// return ColumnUtil.compatOutputKey(super.getKey(config, rs, rsmd, tablePosition, table, columnIndex, childMap), config.getTable(), config.getMethod());
// }
// 不需要隐藏字段这个功能时,取消注释来提升性能
// @Override
// protected boolean isHideColumn(SQLConfig config, ResultSet rs, ResultSetMetaData rsmd, int tablePosition,
// JSONObject table, int columnIndex, Map<String, JSONObject> childMap) throws SQLException {
// return false;
// }
}