Skip to content

Commit 9f1ea38

Browse files
committed
Java:APIJSONBoot 升级 APIJSON, apijson-framework 及自身版本为 4.6.0
1 parent c3ef50f commit 9f1ea38

File tree

6 files changed

+8
-13
lines changed

6 files changed

+8
-13
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

APIJSON-Java-Server/APIJSONBoot/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>apijson.boot</groupId>
77
<artifactId>apijson-boot</artifactId>
8-
<version>4.5.3</version>
8+
<version>4.6.0</version>
99
<packaging>jar</packaging>
1010

1111
<name>APIJSONBoot</name>
@@ -55,12 +55,12 @@
5555
<dependency>
5656
<groupId>com.github.Tencent</groupId>
5757
<artifactId>APIJSON</artifactId>
58-
<version>4.5.2</version>
58+
<version>4.6.0</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>com.github.APIJSON</groupId>
6262
<artifactId>apijson-framework</artifactId>
63-
<version>4.5.2</version>
63+
<version>4.6.0</version>
6464
</dependency>
6565
<!-- 可使用 libs 目录的 apijson-orm.jar 和 apijson-framework.jar 来替代,两种方式二选一 >>>>>>>>>> -->
6666

APIJSON-Java-Server/APIJSONBoot/src/main/java/apijson/demo/DemoObjectParser.java

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414

1515
package apijson.demo;
1616

17+
import com.alibaba.fastjson.JSONObject;
18+
1719
import java.util.List;
1820

1921
import javax.servlet.http.HttpSession;
2022

21-
import com.alibaba.fastjson.JSONObject;
22-
2323
import apijson.NotNull;
2424
import apijson.RequestMethod;
2525
import apijson.orm.AbstractObjectParser;
@@ -33,14 +33,9 @@
3333
*/
3434
public class DemoObjectParser extends AbstractObjectParser {
3535

36-
/**for single object
37-
* @param parentPath
38-
* @param request
39-
* @param name
40-
* @throws Exception
41-
*/
42-
public DemoObjectParser(HttpSession session, @NotNull JSONObject request, String parentPath, String name, SQLConfig arrayConfig, boolean isSubquery) throws Exception {
43-
super(request, parentPath, name, arrayConfig, isSubquery);
36+
public DemoObjectParser(HttpSession session, @NotNull JSONObject request, String parentPath, SQLConfig arrayConfig
37+
, boolean isSubquery, boolean isTable, boolean isArrayMainTable) throws Exception {
38+
super(request, parentPath, arrayConfig, isSubquery, isTable, isArrayMainTable);
4439
}
4540

4641
@Override

0 commit comments

Comments
 (0)