Skip to content

Commit 8a1d532

Browse files
committed
Java:Hadoop&Hive Demo 升级 JDK 17,APIJSON 7.1.0, apijson-framework 及自身 7.1.5
1 parent 5597606 commit 8a1d532

File tree

5 files changed

+32
-20
lines changed

5 files changed

+32
-20
lines changed

APIJSON-Java-Server/APIJSONDemo-Hadoop/pom.xml

+11-6
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,31 @@
55

66
<groupId>apijson.demo</groupId>
77
<artifactId>apijson-demo</artifactId>
8-
<version>7.0.3</version>
8+
<version>7.1.5</version>
99

1010
<name>APIJSONDemo-Hadoop</name>
1111
<description>Demo project for testing APIJSON server based on SpringBoot</description>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16-
<java.version>1.8</java.version>
16+
<java.version>17</java.version>
17+
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
18+
<maven.compiler.source>17</maven.compiler.source>
19+
<maven.compiler.target>17</maven.compiler.target>
1720
</properties>
1821

1922
<dependencies>
2023
<!-- 需要的 APIJSON 相关依赖 -->
2124
<dependency>
2225
<groupId>com.github.Tencent</groupId>
2326
<artifactId>APIJSON</artifactId>
24-
<version>7.0.3</version>
27+
<version>7.1.0</version>
2528
</dependency>
2629
<dependency>
2730
<groupId>com.github.APIJSON</groupId>
2831
<artifactId>apijson-framework</artifactId>
29-
<version>7.0.3</version>
32+
<version>7.1.5</version>
3033
</dependency>
3134

3235
<!-- 需要用的数据库 JDBC 驱动 -->
@@ -123,6 +126,7 @@
123126
<plugin>
124127
<groupId>org.springframework.boot</groupId>
125128
<artifactId>spring-boot-maven-plugin</artifactId>
129+
<version>2.5.13</version>
126130
<executions>
127131
<execution>
128132
<goals>
@@ -134,9 +138,10 @@
134138
<plugin>
135139
<groupId>org.apache.maven.plugins</groupId>
136140
<artifactId>maven-compiler-plugin</artifactId>
141+
<version>3.8.1</version>
137142
<configuration>
138-
<source>1.8</source>
139-
<target>1.8</target>
143+
<source>17</source>
144+
<target>17</target>
140145
</configuration>
141146
</plugin>
142147
</plugins>

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

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

2828
import apijson.Log;
29-
import apijson.framework.APIJSONApplication;
30-
import apijson.framework.APIJSONCreator;
29+
import apijson.framework.javax.APIJSONApplication;
30+
import apijson.framework.javax.APIJSONCreator;
3131
import apijson.orm.SQLConfig;
3232
import apijson.orm.SQLExecutor;
3333

@@ -61,12 +61,12 @@ public void customize(ConfigurableServletWebServerFactory server) {
6161

6262
// 支持 APIAuto 中 JavaScript 代码跨域请求
6363
@Bean
64-
public WebMvcConfigurer corsConfigurer() {
64+
public WebMvcConfigurer corsConfig() {
6565
return new WebMvcConfigurer() {
6666
@Override
6767
public void addCorsMappings(CorsRegistry registry) {
6868
registry.addMapping("/**")
69-
.allowedOrigins("*") //.allowedOriginPatterns("*")
69+
.allowedOriginPatterns("*")
7070
.allowedMethods("*")
7171
.allowCredentials(true)
7272
.maxAge(3600);

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

+1-1
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

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
import com.alibaba.fastjson.annotation.JSONField;
1818

19-
import apijson.framework.APIJSONSQLConfig;
19+
import apijson.framework.javax.APIJSONSQLConfig;
2020

2121

2222
/**SQL 配置
@@ -44,7 +44,7 @@ public class DemoSQLConfig extends APIJSONSQLConfig<Long> {
4444

4545
@Override
4646
public String getDBVersion() {
47-
return "4.0.0-alpha-1"; // TODO 改成你自己的
47+
return "4.0.1"; // TODO 改成你自己的
4848
}
4949

5050
@JSONField(serialize = false) // 不在日志打印 账号/密码 等敏感信息

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

+14-7
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
import apijson.Log;
2727
import apijson.RequestMethod;
28-
import apijson.framework.APIJSONSQLConfig;
29-
import apijson.framework.APIJSONSQLExecutor;
28+
import apijson.framework.javax.APIJSONSQLConfig;
29+
import apijson.framework.javax.APIJSONSQLExecutor;
3030
import apijson.orm.SQLConfig;
3131

3232

@@ -37,13 +37,20 @@ public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> {
3737
public static final String TAG = "DemoSQLExecutor";
3838

3939
@Override
40-
protected String getKey(SQLConfig config, ResultSet rs, ResultSetMetaData rsmd, int tablePosition, JSONObject table, int columnIndex, Map<String, JSONObject> childMap) throws Exception {
40+
protected String getKey(SQLConfig<Long> config, ResultSet rs, ResultSetMetaData rsmd, int tablePosition, JSONObject table, int columnIndex, Map<String, JSONObject> childMap) throws Exception {
4141
String key = super.getKey(config, rs, rsmd, tablePosition, table, columnIndex, childMap);
42-
String table_name = config.getTable();
43-
if(APIJSONSQLConfig.TABLE_KEY_MAP.containsKey(table_name)) table_name = APIJSONSQLConfig.TABLE_KEY_MAP.get(table_name);
44-
String pattern = "^" + table_name + "\\." + "[a-zA-Z]+$";
42+
String tbl = config.getTable();
43+
44+
if (APIJSONSQLConfig.TABLE_KEY_MAP.containsKey(tbl)) {
45+
tbl = APIJSONSQLConfig.TABLE_KEY_MAP.get(tbl);
46+
}
47+
48+
String pattern = "^" + tbl + "\\." + "[a-zA-Z]+$";
4549
boolean isMatch = Pattern.matches(pattern, key);
46-
if(isMatch) key = key.split("\\.")[1];
50+
if (isMatch) {
51+
key = key.split("\\.")[1];
52+
}
53+
4754
return key;
4855
}
4956

0 commit comments

Comments
 (0)