Skip to content

Commit 8a8b195

Browse files
author
stonexwang
committed
multi ds first commit
1 parent 368ad37 commit 8a8b195

18 files changed

+1551
-0
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# 目的
2+
本demo主要演示多数据源的案例,apijson本身依赖的数据源也是单独配置的
3+
另外,可以看到,完全用注解实现完整的能力,也就是说,适当改造apijson自己依赖的数据库是可以干掉的。
4+
5+
更基础的信息,见jdbc-demo下的文件
6+
7+
# 快速跑起来
8+
1. 建立数据库,创建apijson必须以来的几张表
9+
* 执行apijson.sql文中的sql语句(apijson依赖表)
10+
* 执行biz_tables.sql(业务依赖表)
11+
12+
2. 使用postman导入文件multi-datasource.postman_collection.json
13+
14+
3. 运行程序,测试postman中的各个用例
15+
16+
# 代码解读
17+
1. AbstractSQLConfig定义了从request中获取@datasource,根据该datasource,在MultiDemoSQLConfig中切换不同的getSQLSchema
18+
2. MultiDemoSQLExecutor定义了如何根据request中获取@datasource,找到后端对应的数据源,从而获得数据库链接
19+
3. MultiDemoDataSourceConfig利用spring的特性,从application.xml中诸如DataSource供使用
20+
4. 通过在MultiDemoSQLConfig中设置别名,完成表的隐私化处理 TABLE_KEY_MAP.put(VipUser.class.getSimpleName(), "vip_user");
21+
22+
更多信息见jdbc-demo下的文件
23+
24+
25+
TODO:增加函数校验的实例,今天不玩了

apijson-multi-datasource-demo/pom.xml

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>apijson-practice</artifactId>
7+
<groupId>com.stone</groupId>
8+
<version>1.0</version>
9+
<relativePath>../pom.xml</relativePath>
10+
</parent>
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<artifactId>apijson-multi-datasource-demo</artifactId>
14+
15+
16+
<properties>
17+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19+
<java.version>1.8</java.version>
20+
<maven.compiler.source>8</maven.compiler.source>
21+
<maven.compiler.target>8</maven.compiler.target>
22+
</properties>
23+
24+
<dependencies>
25+
<dependency>
26+
<groupId>com.stone</groupId>
27+
<artifactId>apijson-extend</artifactId>
28+
<version>1.0</version>
29+
</dependency>
30+
<dependency>
31+
<groupId>com.github.APIJSON</groupId>
32+
<artifactId>apijson-framework</artifactId>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.springframework.boot</groupId>
36+
<artifactId>spring-boot-starter-web</artifactId>
37+
<version>2.4.2</version>
38+
</dependency>
39+
40+
<dependency>
41+
<groupId>com.github.TommyLemon</groupId>
42+
<artifactId>unitauto-java</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>com.github.TommyLemon</groupId>
46+
<artifactId>unitauto-jar</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>io.github.classgraph</groupId>
50+
<artifactId>classgraph</artifactId>
51+
</dependency>
52+
<!-- 需要用的 Druid 数据库连接池库,1.0.29 以上 -->
53+
<dependency>
54+
<groupId>com.alibaba</groupId>
55+
<artifactId>druid</artifactId>
56+
<version>1.0.29</version>
57+
</dependency>
58+
59+
</dependencies>
60+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,230 @@
1+
/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.*/
14+
15+
package com.stone.apijson.demo.multidatasource.apijson;
16+
17+
import apijson.*;
18+
import apijson.framework.APIJSONFunctionParser;
19+
import apijson.orm.JSONRequest;
20+
import com.alibaba.fastjson.JSONArray;
21+
import com.alibaba.fastjson.JSONObject;
22+
23+
import javax.servlet.http.HttpSession;
24+
import java.util.ArrayList;
25+
import java.util.Arrays;
26+
import java.util.Collection;
27+
28+
29+
/**
30+
* 可远程调用的函数类
31+
*
32+
* @author Lemon
33+
*/
34+
public class MultiDemoFunctionParser extends APIJSONFunctionParser {
35+
public static final String TAG = "MultiDemoFunctionParser";
36+
37+
public MultiDemoFunctionParser() {
38+
this(null, null, 0, null, null);
39+
}
40+
41+
public MultiDemoFunctionParser(RequestMethod method, String tag, int version, JSONObject request, HttpSession session) {
42+
super(method, tag, version, request, session);
43+
}
44+
45+
public Object echo(@NotNull JSONObject current, String name) {
46+
return name + " from echo";
47+
}
48+
49+
/**
50+
* @param current
51+
* @param idList
52+
* @return
53+
* @throws Exception
54+
*/
55+
public Object verifyIdList(@NotNull JSONObject current, @NotNull String idList) throws Exception {
56+
Object obj = current.get(idList);
57+
if (obj == null) {
58+
return null;
59+
}
60+
61+
if (obj instanceof Collection == false) {
62+
throw new IllegalArgumentException(idList + " 不符合 Array 类型! 结构必须是 [] !");
63+
}
64+
JSONArray array = (JSONArray) obj;
65+
if (array != null) {
66+
for (int i = 0; i < array.size(); i++) {
67+
if (array.get(i) instanceof Long == false && array.get(i) instanceof Integer == false) {
68+
throw new IllegalArgumentException(idList + " 内字符 " + array.getString(i) + " 不符合 Long 类型!");
69+
}
70+
}
71+
}
72+
return null;
73+
}
74+
75+
76+
/**
77+
* @param current
78+
* @param urlList
79+
* @return
80+
* @throws Exception
81+
*/
82+
public Object verifyURLList(@NotNull JSONObject current, @NotNull String urlList) throws Exception {
83+
Object obj = current.get(urlList);
84+
if (obj == null) {
85+
return null;
86+
}
87+
88+
if (obj instanceof Collection == false) {
89+
throw new IllegalArgumentException(urlList + " 不符合 Array 类型! 结构必须是 [] !");
90+
}
91+
JSONArray array = (JSONArray) obj;
92+
if (array != null) {
93+
for (int i = 0; i < array.size(); i++) {
94+
if (StringUtil.isUrl(array.getString(i)) == false) {
95+
throw new IllegalArgumentException(urlList + " 内字符 " + array.getString(i) + " 不符合 URL 格式!");
96+
}
97+
}
98+
}
99+
return null;
100+
}
101+
102+
103+
/**
104+
* @param current
105+
* @param momentId
106+
* @return
107+
* @throws Exception
108+
*/
109+
public int deleteCommentOfMoment(@NotNull JSONObject current, @NotNull String momentId) throws Exception {
110+
long mid = current.getLongValue(momentId);
111+
if (mid <= 0 || current.getIntValue(JSONResponse.KEY_COUNT) <= 0) {
112+
return 0;
113+
}
114+
115+
JSONRequest request = new JSONRequest();
116+
117+
//Comment<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
118+
JSONRequest comment = new JSONRequest();
119+
comment.put("momentId", mid);
120+
121+
request.put("Comment", comment);
122+
//Comment>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
123+
124+
JSONObject rp = new MultiDemoParser(RequestMethod.DELETE).setNeedVerify(false).parseResponse(request);
125+
126+
JSONObject c = rp.getJSONObject("Comment");
127+
return c == null ? 0 : c.getIntValue(JSONResponse.KEY_COUNT);
128+
}
129+
130+
131+
/**
132+
* 删除评论的子评论
133+
*
134+
* @param current
135+
* @param toId
136+
* @return
137+
*/
138+
public int deleteChildComment(@NotNull JSONObject current, @NotNull String toId) throws Exception {
139+
long tid = current.getLongValue(toId);
140+
if (tid <= 0 || current.getIntValue(JSONResponse.KEY_COUNT) <= 0) {
141+
return 0;
142+
}
143+
144+
//递归获取到全部子评论id
145+
146+
JSONRequest request = new JSONRequest();
147+
148+
//Comment<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
149+
JSONRequest comment = new JSONRequest();
150+
comment.put("id{}", getChildCommentIdList(tid));
151+
152+
request.put("Comment", comment);
153+
//Comment>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
154+
155+
JSONObject rp = new MultiDemoParser(RequestMethod.DELETE).setNeedVerify(false).parseResponse(request);
156+
157+
JSONObject c = rp.getJSONObject("Comment");
158+
return c == null ? 0 : c.getIntValue(JSONResponse.KEY_COUNT);
159+
}
160+
161+
162+
private JSONArray getChildCommentIdList(long tid) {
163+
164+
JSONArray arr = new JSONArray();
165+
166+
JSONRequest request = new JSONRequest();
167+
168+
//Comment-id[]<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
169+
JSONRequest idItem = new JSONRequest();
170+
171+
//Comment<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
172+
JSONRequest comment = new JSONRequest();
173+
comment.put("toId", tid);
174+
comment.setColumn("id");
175+
idItem.put("Comment", comment);
176+
//Comment>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
177+
178+
request.putAll(idItem.toArray(0, 0, "Comment-id"));
179+
//Comment-id[]>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
180+
181+
JSONObject rp = new MultiDemoParser().setNeedVerify(false).parseResponse(request);
182+
183+
JSONArray a = rp.getJSONArray("Comment-id[]");
184+
if (a != null) {
185+
arr.addAll(a);
186+
187+
JSONArray a2;
188+
for (int i = 0; i < a.size(); i++) {
189+
190+
a2 = getChildCommentIdList(a.getLongValue(i));
191+
if (a2 != null) {
192+
arr.addAll(a2);
193+
}
194+
}
195+
}
196+
197+
return arr;
198+
}
199+
200+
201+
/**
202+
* TODO 仅用来测试 "key-()":"getIdList()" 和 "key()":"getIdList()"
203+
*
204+
* @param current
205+
* @return JSONArray 只能用JSONArray,用long[]会在SQLConfig解析崩溃
206+
* @throws Exception
207+
*/
208+
public JSONArray getIdList(@NotNull JSONObject current) {
209+
return new JSONArray(new ArrayList<Object>(Arrays.asList(12, 15, 301, 82001, 82002, 38710)));
210+
}
211+
212+
213+
/**
214+
* TODO 仅用来测试 "key-()":"verifyAccess()"
215+
*
216+
* @param current
217+
* @return
218+
* @throws Exception
219+
*/
220+
public Object verifyAccess(@NotNull JSONObject current) throws Exception {
221+
long userId = current.getLongValue(JSONRequest.KEY_USER_ID);
222+
RequestRole role = RequestRole.get(current.getString(JSONRequest.KEY_ROLE));
223+
if (role == RequestRole.OWNER && userId != MultiDemoVerifier.getVisitorId(getSession())) {
224+
throw new IllegalAccessException("登录用户与角色OWNER不匹配!");
225+
}
226+
return null;
227+
}
228+
229+
230+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*Copyright ©2016 TommyLemon(https://github.com/TommyLemon/APIJSON)
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.*/
14+
15+
package com.stone.apijson.demo.multidatasource.apijson;
16+
17+
import apijson.NotNull;
18+
import apijson.RequestMethod;
19+
import apijson.framework.APIJSONObjectParser;
20+
import apijson.orm.Join;
21+
import apijson.orm.SQLConfig;
22+
import com.alibaba.fastjson.JSONObject;
23+
24+
import javax.servlet.http.HttpSession;
25+
import java.util.List;
26+
27+
28+
/**简化Parser,getObject和getArray(getArrayConfig)都能用
29+
* @author Lemon
30+
*/
31+
public class MultiDemoObjectParser extends APIJSONObjectParser {
32+
33+
public MultiDemoObjectParser(HttpSession session, @NotNull JSONObject request, String parentPath, SQLConfig arrayConfig
34+
, boolean isSubquery, boolean isTable, boolean isArrayMainTable) throws Exception {
35+
super(session, request, parentPath, arrayConfig, isSubquery, isTable, isArrayMainTable);
36+
}
37+
38+
@Override
39+
public SQLConfig newSQLConfig(RequestMethod method, String table, String alias, JSONObject request, List<Join> joinList, boolean isProcedure) throws Exception {
40+
return MultiDemoSQLConfig.newSQLConfig(method, table, alias, request, joinList, isProcedure);
41+
}
42+
43+
44+
}

0 commit comments

Comments
 (0)