Skip to content

Commit 27c704e

Browse files
committed
Java:MultiDataSource-Elasticsearch 升级 JDK 17,APIJSON 7.1.0, apijson-framework 及自身 7.1.5
1 parent bd3275a commit 27c704e

File tree

14 files changed

+74
-71
lines changed

14 files changed

+74
-71
lines changed

APIJSON-Java-Server/APIJSONBoot-MultiDataSource/src/main/java/apijson/boot/DemoController.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ public String getRequestURL() {
141141
return getRequestBaseURL() + getRequestPath();
142142
}
143143

144-
// @Override
145-
// public Parser<Long> newParser(HttpSession session, RequestMethod method) {
146-
// return super.newParser(session, method).setNeedVerify(false);
147-
// }
144+
@Override
145+
public Parser<Long> newParser(HttpSession session, RequestMethod method) {
146+
return super.newParser(session, method).setNeedVerify(false);
147+
}
148148

149149
/**增删改查统一的类 RESTful API 入口,牺牲一点路由解析性能来提升一些开发效率
150150
* @param method

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010
<groupId>apijson.demo</groupId>
1111
<artifactId>apijsondemo-multidatasource-elasticsearch</artifactId>
12-
<version>7.0.3</version>
12+
<version>7.1.5</version>
1313

1414
<name>apijsondemo-multidatasource-elasticsearch</name>
1515
<description>Demo project for testing APIJSON server based on SpringBoot</description>
@@ -46,12 +46,12 @@
4646
<dependency>
4747
<groupId>com.github.Tencent</groupId>
4848
<artifactId>APIJSON</artifactId>
49-
<version>7.0.3</version>
49+
<version>7.1.0</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>com.github.APIJSON</groupId>
5353
<artifactId>apijson-framework</artifactId>
54-
<version>7.0.3</version>
54+
<version>7.1.5</version>
5555
</dependency>
5656

5757
<!-- 需要用的数据库 JDBC 驱动 -->

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DataBaseConfig.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public String getPrimary() {
1616
return primary;
1717
}
1818

19-
public static DataBaseConfig getInstence() {
19+
public static DataBaseConfig getInstance() {
2020
return SpringContextUtils.getBean(DataBaseConfig.class);
2121
}
2222
}

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DataBaseUtil.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class DataBaseUtil {
1313
* @param url
1414
* @return
1515
*/
16-
public static String getLibname(String url) {
16+
public static String getDBName(String url) {
1717
Pattern p = Pattern.compile("jdbc:(?<db>\\w+):.*((//)|@)(?<host>.+):(?<port>\\d+)(/|(;DatabaseName=)|:)(?<dbName>\\w+)\\??.*");
1818
Matcher m = p.matcher(url);
1919
if(m.find()) {
@@ -41,7 +41,7 @@ public static String getDruidUrl(String datasource) {
4141
}
4242

4343
public static String getDruidSchema(String datasource) {
44-
return getLibname(DynamicJdbcDataSource.getDetail(datasource).getUrl()); // 数据库名;
44+
return getDBName(DynamicJdbcDataSource.getDetail(datasource).getUrl()); // 数据库名;
4545
}
4646

4747
public static String getDruidDBAccount(String datasource) {

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoApplication.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
2727

2828
import apijson.Log;
29-
import apijson.framework.APIJSONApplication;
30-
import apijson.framework.APIJSONCreator;
31-
import apijson.framework.APIJSONSQLConfig;
29+
import apijson.framework.javax.APIJSONApplication;
30+
import apijson.framework.javax.APIJSONCreator;
31+
import apijson.framework.javax.APIJSONSQLConfig;
3232
import apijson.orm.AbstractFunctionParser;
3333
import apijson.orm.AbstractVerifier;
3434
import apijson.orm.FunctionParser;
@@ -67,7 +67,7 @@ public void customize(ConfigurableServletWebServerFactory server) {
6767

6868
// 支持 APIAuto 中 JavaScript 代码跨域请求
6969
@Bean
70-
public WebMvcConfigurer corsConfigurer() {
70+
public WebMvcConfigurer corsConfig() {
7171
return new WebMvcConfigurer() {
7272
@Override
7373
public void addCorsMappings(CorsRegistry registry) {
@@ -79,24 +79,24 @@ public void addCorsMappings(CorsRegistry registry) {
7979

8080
static {
8181
// 使用本项目的自定义处理类
82-
APIJSONApplication.DEFAULT_APIJSON_CREATOR = new APIJSONCreator<String>() {
82+
APIJSONApplication.DEFAULT_APIJSON_CREATOR = new APIJSONCreator<Object>() {
8383
@Override
84-
public Parser<String> createParser() {
84+
public Parser<Object> createParser() {
8585
return new DemoParser();
8686
}
8787

8888
@Override
89-
public SQLConfig createSQLConfig() {
89+
public SQLConfig<Object> createSQLConfig() {
9090
return new DemoSQLConfig();
9191
}
9292

9393
@Override
94-
public FunctionParser createFunctionParser() {
94+
public FunctionParser<Object> createFunctionParser() {
9595
return new DemoFunctionParser();
9696
}
9797

9898
@Override
99-
public SQLExecutor createSQLExecutor() {
99+
public SQLExecutor<Object> createSQLExecutor() {
100100
return new DemoSQLExecutor();
101101
}
102102
};

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoController.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
import apijson.RequestMethod;
3131
import apijson.StringUtil;
32-
import apijson.framework.APIJSONController;
32+
import apijson.framework.javax.APIJSONController;
3333
import apijson.orm.Parser;
3434

3535

@@ -46,10 +46,10 @@
4646
*/
4747
@RestController
4848
@RequestMapping("")
49-
public class DemoController extends APIJSONController<Long> {
49+
public class DemoController extends APIJSONController<Object> {
5050

5151
@Override
52-
public Parser<Long> newParser(HttpSession session, RequestMethod method) {
52+
public Parser<Object> newParser(HttpSession session, RequestMethod method) {
5353
return super.newParser(session, method).setNeedVerify(false); // TODO 这里关闭校验,方便新手快速测试,实际线上项目建议开启
5454
}
5555

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoFunctionParser.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
import apijson.NotNull;
88
import apijson.RequestMethod;
99
import apijson.StringUtil;
10-
import apijson.framework.APIJSONFunctionParser;
11-
import apijson.framework.APIJSONVerifier;
10+
import apijson.framework.javax.APIJSONFunctionParser;
11+
import apijson.framework.javax.APIJSONVerifier;
1212
import lombok.extern.slf4j.Slf4j;
1313

1414
@Slf4j
15-
public class DemoFunctionParser extends APIJSONFunctionParser {
15+
public class DemoFunctionParser extends APIJSONFunctionParser<Object> {
1616
public DemoFunctionParser() {
1717
this(null, null, 0, null, null);
1818
}

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoObjectParser.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
import apijson.NotNull;
1010
import apijson.RequestMethod;
11-
import apijson.framework.APIJSONObjectParser;
11+
import apijson.framework.javax.APIJSONObjectParser;
1212
import apijson.orm.Join;
1313
import apijson.orm.SQLConfig;
1414

15-
public class DemoObjectParser extends APIJSONObjectParser {
15+
public class DemoObjectParser extends APIJSONObjectParser<Object> {
1616

1717
public DemoObjectParser(HttpSession session, @NotNull JSONObject request, String parentPath, SQLConfig arrayConfig
1818
, boolean isSubquery, boolean isTable, boolean isArrayMainTable) throws Exception {

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoParser.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import com.alibaba.fastjson.JSONObject;
44

55
import apijson.RequestMethod;
6-
import apijson.framework.APIJSONObjectParser;
7-
import apijson.framework.APIJSONParser;
6+
import apijson.framework.javax.APIJSONObjectParser;
7+
import apijson.framework.javax.APIJSONParser;
88
import apijson.orm.SQLConfig;
99

10-
public class DemoParser extends APIJSONParser<String> {
10+
public class DemoParser extends APIJSONParser<Object> {
1111
public DemoParser() {
1212
super();
1313
}

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoSQLConfig.java

+10-8
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import com.alibaba.fastjson.annotation.JSONField;
2020

2121
import apijson.RequestMethod;
22-
import apijson.framework.APIJSONSQLConfig;
22+
import apijson.framework.javax.APIJSONSQLConfig;
2323
import apijson.orm.AbstractSQLConfig;
2424

2525

@@ -29,7 +29,7 @@
2929
* https://github.com/Tencent/APIJSON/blob/master/%E8%AF%A6%E7%BB%86%E7%9A%84%E8%AF%B4%E6%98%8E%E6%96%87%E6%A1%A3.md#c-1-1%E4%BF%AE%E6%94%B9%E6%95%B0%E6%8D%AE%E5%BA%93%E9%93%BE%E6%8E%A5
3030
* @author Lemon
3131
*/
32-
public class DemoSQLConfig extends APIJSONSQLConfig<Long> {
32+
public class DemoSQLConfig extends APIJSONSQLConfig<Object> {
3333

3434
public DemoSQLConfig() {
3535
super();
@@ -40,8 +40,8 @@ public DemoSQLConfig(RequestMethod method, String table) {
4040
}
4141

4242
static {
43-
// DEFAULT_DATABASE = DATABASE_ELASTICSEARCH; // TODO 默认数据库类型,改成你自己的
44-
// DEFAULT_SCHEMA = "sys"; // TODO 默认数据库名/模式,改成你自己的,默认情况是 MySQL: sys, PostgreSQL: public, SQL Server: dbo, Oracle:
43+
// DEFAULT_DATABASE = DATABASE_ELASTICSEARCH; // TODO 默认数据库类型,改成你自己的
44+
// DEFAULT_SCHEMA = "sys"; // TODO 默认数据库名/模式,改成你自己的,默认情况是 MySQL: sys, PostgreSQL: public, SQL Server: dbo, Oracle:
4545

4646
// 表名和数据库不一致的,需要配置映射关系。只使用 APIJSONORM 时才需要;
4747
// 如果用了 apijson-framework 且调用了 APIJSONApplication.init 则不需要
@@ -79,8 +79,9 @@ public String getDBVersion() {
7979
@JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息,用了 UnitAuto 则一定要加
8080
@Override
8181
public String getDatabase() {
82-
if (super.getDatabase() != null) {
83-
return super.getDatabase();
82+
String db = super.getDatabase();
83+
if (db != null) {
84+
return db;
8485
}
8586
try {
8687
return DynamicJdbcDataSource.getDetail(this.getDatasource()).getDatabase();
@@ -92,8 +93,9 @@ public String getDatabase() {
9293
@JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息,用了 UnitAuto 则一定要加
9394
@Override
9495
public String getSchema() {
95-
if (super.getSchema() != null) {
96-
return super.getSchema();
96+
String sch = super.getSchema();
97+
if (sch != null) {
98+
return sch;
9799
}
98100
try {
99101
return DynamicJdbcDataSource.getDetail(this.getDatasource()).getSchema();

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DemoSQLExecutor.java

+29-29
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import apijson.Log;
2020
import apijson.NotNull;
2121
import apijson.StringUtil;
22-
import apijson.framework.APIJSONSQLExecutor;
22+
import apijson.framework.javax.APIJSONSQLExecutor;
2323
import apijson.orm.SQLConfig;
2424
import lombok.extern.log4j.Log4j2;
2525

@@ -29,7 +29,7 @@
2929
* @author Lemon
3030
*/
3131
@Log4j2
32-
public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> {
32+
public class DemoSQLExecutor extends APIJSONSQLExecutor<Object> {
3333
public static final String TAG = "DemoSQLExecutor";
3434

3535
// 适配连接池,如果这里能拿到连接池的有效 Connection,则 SQLConfig 不需要配置 dbVersion, dbUri, dbAccount,
@@ -68,33 +68,33 @@ public int executeUpdate(@NotNull SQLConfig config, String sql) throws Exception
6868
/***
6969
* 查询返回字段值进行二次处理
7070
*/
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+
// }
9898

9999
// 取消注释支持 !key 反选字段 和 字段名映射,需要先依赖插件 https://github.com/APIJSON/apijson-column
100100
// @Override

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/java/apijson/demo/DynamicJdbcDataSource.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static void addDataSource(DynamicJdbcDataSource detail) {
7575
public static DynamicJdbcDataSource getDetail(String datasource) {
7676
if (datasource == null) {
7777
// 默认数据源
78-
datasource = DataBaseConfig.getInstence().getPrimary();
78+
datasource = DataBaseConfig.getInstance().getPrimary();
7979
}
8080
// 不存在交给框架处理
8181
return dataSourceMap.get(datasource);
@@ -157,7 +157,7 @@ private void initJdbcDataSource() {
157157
ItemDataSource dataSource = (ItemDataSource) dataSourceList.getDataSources().get(datasourceName);
158158
DruidDataSource druid = (DruidDataSource) dataSource.getRealDataSource();
159159
String url = druid.getDataSourceStat().getUrl(); // 数据库连接url
160-
String schema = DataBaseUtil.getLibname(url); // 数据库名;
160+
String schema = DataBaseUtil.getDBName(url); // 数据库名;
161161
String database = JdbcUtils.getDbType(url).getDb().toUpperCase(); // 数据库类型
162162
String dbAccount = druid.getUsername(); // 数据库用户名
163163
String dbPassword = druid.getPassword(); // 数据库密码

APIJSON-Java-Server/APIJSONDemo-MultiDataSource-Elasticsearch/src/main/resources/application.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ spring:
2727
password: apijson
2828
155db:
2929
driver-class-name: com.mysql.cj.jdbc.Driver
30-
url: jdbc:mysql://localhost:3888/sys?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&useSSL=false
30+
url: jdbc:mysql://localhost:3306/sys?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&useSSL=false
3131
username: root
3232
password: apijson
3333
213db:
3434
driver-class-name: com.mysql.cj.jdbc.Driver
35-
url: jdbc:mysql://localhost:3888/sys?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&useSSL=false
35+
url: jdbc:mysql://localhost:3306/sys?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowMultiQueries=true&useSSL=false
3636
username: root
3737
password: apijson
3838
db1:

APIJSON-Java-Server/APIJSONFinal/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@
114114
资源复制到 jar 包中去,注意打包的时候需要配置 engine: me.setBaseTemplatePath("webapp"); me.setToClassPathSourceFactory();
115115
如果 web 资源本身就放在 src/main/resources/webapp 之下,则不需要此插件 -->
116116
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
117118
<artifactId>maven-resources-plugin</artifactId>
118119
<version>3.1.0</version>
119120
<executions>

0 commit comments

Comments
 (0)