| 1234567891011121314151617181920 |
- package com.fdkankan.modeldemo.httpclient;
- import com.alibaba.fastjson.JSONObject;
- import com.dtflys.forest.annotation.JSONBody;
- import com.dtflys.forest.annotation.Post;
- import com.dtflys.forest.annotation.Var;
- public interface HttpClient {
- /**
- * 发送POST请求,提交JSON数据
- *
- * @param url 请求的URL地址
- * @param object 要发送的JSON对象
- * @return 服务器响应的JSON对象
- */
- @Post(url = "{url}", connectTimeout = 30000, readTimeout = 30000, maxRetryInterval = 3)
- JSONObject postJson(@Var("url") String url, @JSONBody Object object);
- }
|