|
19 | 19 | import apijson.Log;
|
20 | 20 | import apijson.NotNull;
|
21 | 21 | import apijson.StringUtil;
|
22 |
| -import apijson.framework.APIJSONSQLExecutor; |
| 22 | +import apijson.framework.javax.APIJSONSQLExecutor; |
23 | 23 | import apijson.orm.SQLConfig;
|
24 | 24 | import lombok.extern.log4j.Log4j2;
|
25 | 25 |
|
|
29 | 29 | * @author Lemon
|
30 | 30 | */
|
31 | 31 | @Log4j2
|
32 |
| -public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> { |
| 32 | +public class DemoSQLExecutor extends APIJSONSQLExecutor<Object> { |
33 | 33 | public static final String TAG = "DemoSQLExecutor";
|
34 | 34 |
|
35 | 35 | // 适配连接池,如果这里能拿到连接池的有效 Connection,则 SQLConfig 不需要配置 dbVersion, dbUri, dbAccount,
|
@@ -68,33 +68,33 @@ public int executeUpdate(@NotNull SQLConfig config, String sql) throws Exception
|
68 | 68 | /***
|
69 | 69 | * 查询返回字段值进行二次处理
|
70 | 70 | */
|
71 |
| -// @Override |
72 |
| -// protected JSONObject onPutColumn(@NotNull SQLConfig config, @NotNull ResultSet rs, @NotNull ResultSetMetaData rsmd |
73 |
| -// , final int tablePosition, @NotNull JSONObject table, final int columnIndex, Join join, Map<String, JSONObject> childMap) throws Exception { |
74 |
| -// if (table == null) { // 对应副表 viceSql 不能生成正常 SQL, 或者是 ! - Outer, ( - ANTI JOIN 的副表这种不需要缓存及返回的数据 |
75 |
| -// Log.i(TAG, "onPutColumn table == null >> return table;"); |
76 |
| -// return table; |
77 |
| -// } |
78 |
| -// |
79 |
| -// if (isHideColumn(config, rs, rsmd, tablePosition, table, columnIndex, childMap)) { |
80 |
| -// Log.i(TAG, "onPutColumn isHideColumn(config, rs, rsmd, tablePosition, table, columnIndex, childMap) >> return table;"); |
81 |
| -// return table; |
82 |
| -// } |
83 |
| -// |
84 |
| -// String label = getKey(config, rs, rsmd, tablePosition, table, columnIndex, childMap); |
85 |
| -// Object value = getValue(config, rs, rsmd, tablePosition, table, columnIndex, label, childMap); |
86 |
| -// |
87 |
| -// // TODO |
88 |
| -// if(StringUtils.equals(config.getTable(), "User") && StringUtils.equals(label, "addr_id")) { |
89 |
| -// value = "1-1-1"; |
90 |
| -// } |
91 |
| -// // 主表必须 put 至少一个 null 进去,否则全部字段为 null 都不 put 会导致中断后续正常返回值 |
92 |
| -// if (value != null || (join == null && table.isEmpty())) { |
93 |
| -// table.put(label, value); |
94 |
| -// } |
95 |
| -// |
96 |
| -// return table; |
97 |
| -// } |
| 71 | + // @Override |
| 72 | + // protected JSONObject onPutColumn(@NotNull SQLConfig config, @NotNull ResultSet rs, @NotNull ResultSetMetaData rsmd |
| 73 | + // , final int tablePosition, @NotNull JSONObject table, final int columnIndex, Join join, Map<String, JSONObject> childMap) throws Exception { |
| 74 | + // if (table == null) { // 对应副表 viceSql 不能生成正常 SQL, 或者是 ! - Outer, ( - ANTI JOIN 的副表这种不需要缓存及返回的数据 |
| 75 | + // Log.i(TAG, "onPutColumn table == null >> return table;"); |
| 76 | + // return table; |
| 77 | + // } |
| 78 | + // |
| 79 | + // if (isHideColumn(config, rs, rsmd, tablePosition, table, columnIndex, childMap)) { |
| 80 | + // Log.i(TAG, "onPutColumn isHideColumn(config, rs, rsmd, tablePosition, table, columnIndex, childMap) >> return table;"); |
| 81 | + // return table; |
| 82 | + // } |
| 83 | + // |
| 84 | + // String label = getKey(config, rs, rsmd, tablePosition, table, columnIndex, childMap); |
| 85 | + // Object value = getValue(config, rs, rsmd, tablePosition, table, columnIndex, label, childMap); |
| 86 | + // |
| 87 | + // // TODO |
| 88 | + // if(StringUtils.equals(config.getTable(), "User") && StringUtils.equals(label, "addr_id")) { |
| 89 | + // value = "1-1-1"; |
| 90 | + // } |
| 91 | + // // 主表必须 put 至少一个 null 进去,否则全部字段为 null 都不 put 会导致中断后续正常返回值 |
| 92 | + // if (value != null || (join == null && table.isEmpty())) { |
| 93 | + // table.put(label, value); |
| 94 | + // } |
| 95 | + // |
| 96 | + // return table; |
| 97 | + // } |
98 | 98 |
|
99 | 99 | // 取消注释支持 !key 反选字段 和 字段名映射,需要先依赖插件 https://github.com/APIJSON/apijson-column
|
100 | 100 | // @Override
|
|
0 commit comments