@@ -257,6 +257,7 @@ public String openHead(@PathVariable String request, HttpSession session) {
257
257
public static final String VERIFY = "verify" ;
258
258
259
259
public static final String TYPE = "type" ;
260
+ public static final String VALUE = "value" ;
260
261
261
262
262
263
@@ -268,7 +269,10 @@ public String openHead(@PathVariable String request, HttpSession session) {
268
269
{
269
270
"type": "ALL", //重载对象,ALL, FUNCTION, REQUEST, ACCESS,非必须
270
271
"phone": "13000082001",
271
- "verify": "1234567" //验证码,对应类型为 Verify.TYPE_RELOAD
272
+ "verify": "1234567", //验证码,对应类型为 Verify.TYPE_RELOAD
273
+ "value": { // 自定义增量更新条件
274
+ "id": 1 // 过滤条件,符合 APIJSON 查询功能符即可
275
+ }
272
276
}
273
277
* </pre>
274
278
*/
@@ -277,11 +281,13 @@ public String openHead(@PathVariable String request, HttpSession session) {
277
281
public JSONObject reload (@ RequestBody String request ) {
278
282
JSONObject requestObject = null ;
279
283
String type ;
284
+ JSONObject value ;
280
285
String phone ;
281
286
String verify ;
282
287
try {
283
288
requestObject = DemoParser .parseRequest (request );
284
289
type = requestObject .getString (TYPE );
290
+ value = requestObject .getJSONObject (VALUE );
285
291
phone = requestObject .getString (PHONE );
286
292
verify = requestObject .getString (VERIFY );
287
293
} catch (Exception e ) {
@@ -300,7 +306,7 @@ public JSONObject reload(@RequestBody String request) {
300
306
301
307
if (reloadAll || "ACCESS" .equals (type )) {
302
308
try {
303
- result .put (ACCESS_ , DemoVerifier .initAccess ());
309
+ result .put (ACCESS_ , DemoVerifier .initAccess (false , null , value ));
304
310
} catch (ServerException e ) {
305
311
e .printStackTrace ();
306
312
result .put (ACCESS_ , DemoParser .newErrorResult (e ));
@@ -309,7 +315,7 @@ public JSONObject reload(@RequestBody String request) {
309
315
310
316
if (reloadAll || "FUNCTION" .equals (type )) {
311
317
try {
312
- result .put (FUNCTION_ , DemoFunctionParser .init ());
318
+ result .put (FUNCTION_ , DemoFunctionParser .init (false , null , value ));
313
319
} catch (ServerException e ) {
314
320
e .printStackTrace ();
315
321
result .put (FUNCTION_ , DemoParser .newErrorResult (e ));
@@ -318,7 +324,7 @@ public JSONObject reload(@RequestBody String request) {
318
324
319
325
if (reloadAll || "REQUEST" .equals (type )) {
320
326
try {
321
- result .put (REQUEST_ , DemoVerifier .initRequest ());
327
+ result .put (REQUEST_ , DemoVerifier .initRequest (false , null , value ));
322
328
} catch (ServerException e ) {
323
329
e .printStackTrace ();
324
330
result .put (REQUEST_ , DemoParser .newErrorResult (e ));
0 commit comments