Former-commit-id: 72e166334ea6b0b0033b8298ddf4c5a188d15d58
master
wangbing 5 years ago
parent e947f95ffd
commit 8d1f37c427

@ -39,14 +39,14 @@ public class ${className} {
//设置发送网络请求前的统一操作
client.setBefore(new ApiClient.Before() {
public void call(ApiRequest request) {
System.out.println("请求参数" + MapperUtil.toJson(request));
System.out.println("请求方法" + request.path());
System.out.println("before-->" + MapperUtil.toJson(request));
System.out.println("before-->" + request.path());
}
});
//设置网络请求完成后的统一操作
client.setAfter(new ApiClient.After() {
public void call(ApiRequest request, ApiResponse response) {
System.out.println("响应参数" + MapperUtil.toJson(response));
System.out.println("after-->" + MapperUtil.toJson(response));
Date end = new Date();
System.out.println(simpleDateFormat.format(end));
}

Loading…
Cancel
Save

Powered by TurnKey Linux.