File tree 4 files changed +15
-12
lines changed
APIJSON-Java-Server/APIJSONDemo-Presto
src/main/java/apijson/demo
4 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 5
5
6
6
<groupId >apijson.demo</groupId >
7
7
<artifactId >apijson-demo</artifactId >
8
- <version >7.0.3 </version >
8
+ <version >7.1.5 </version >
9
9
10
10
<name >APIJSONDemo-Presto</name >
11
11
<description >Demo project for testing APIJSON server based on SpringBoot</description >
12
12
13
13
<properties >
14
14
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
15
<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>
17
20
</properties >
18
21
19
22
<dependencies >
20
23
<!-- 需要的 APIJSON 相关依赖 -->
21
24
<dependency >
22
25
<groupId >com.github.Tencent</groupId >
23
26
<artifactId >APIJSON</artifactId >
24
- <version >7.0.3 </version >
27
+ <version >7.1.0 </version >
25
28
</dependency >
26
29
<dependency >
27
30
<groupId >com.github.APIJSON</groupId >
28
31
<artifactId >apijson-framework</artifactId >
29
- <version >7.0.3 </version >
32
+ <version >7.1.5 </version >
30
33
</dependency >
31
34
32
35
<!-- 需要用的数据库 JDBC 驱动 -->
71
74
<artifactId >maven-compiler-plugin</artifactId >
72
75
<version >3.8.1</version >
73
76
<configuration >
74
- <source >1.8 </source >
75
- <target >1.8 </target >
77
+ <source >17 </source >
78
+ <target >17 </target >
76
79
</configuration >
77
80
</plugin >
78
81
</plugins >
Original file line number Diff line number Diff line change 26
26
import org .springframework .web .servlet .config .annotation .WebMvcConfigurer ;
27
27
28
28
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 ;
31
31
import apijson .orm .SQLConfig ;
32
32
33
33
@@ -60,7 +60,7 @@ public void customize(ConfigurableServletWebServerFactory server) {
60
60
61
61
// 支持 APIAuto 中 JavaScript 代码跨域请求
62
62
@ Bean
63
- public WebMvcConfigurer corsConfigurer () {
63
+ public WebMvcConfigurer corsConfig () {
64
64
return new WebMvcConfigurer () {
65
65
@ Override
66
66
public void addCorsMappings (CorsRegistry registry ) {
@@ -77,7 +77,7 @@ public void addCorsMappings(CorsRegistry registry) {
77
77
// 使用本项目的自定义处理类
78
78
APIJSONApplication .DEFAULT_APIJSON_CREATOR = new APIJSONCreator <Long >() {
79
79
@ Override
80
- public SQLConfig createSQLConfig () {
80
+ public SQLConfig < Long > createSQLConfig () {
81
81
return new DemoSQLConfig ();
82
82
}
83
83
};
Original file line number Diff line number Diff line change 29
29
30
30
import apijson .RequestMethod ;
31
31
import apijson .StringUtil ;
32
- import apijson .framework .APIJSONController ;
32
+ import apijson .framework .javax . APIJSONController ;
33
33
import apijson .orm .Parser ;
34
34
35
35
Original file line number Diff line number Diff line change 16
16
17
17
import com .alibaba .fastjson .annotation .JSONField ;
18
18
19
- import apijson .framework .APIJSONSQLConfig ;
19
+ import apijson .framework .javax . APIJSONSQLConfig ;
20
20
21
21
22
22
/**SQL 配置
You can’t perform that action at this time.
0 commit comments