ForRestClient.java 350 字节
Newer Older
沉默王二's avatar
沉默王二 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.itwanger.http;

import com.dtflys.forest.annotation.Body;
import com.dtflys.forest.annotation.Post;
import com.dtflys.forest.annotation.Request;

/**
 * @author 微信搜「沉默王二」,回复关键字 Java
 */
public interface ForRestClient {
    @Post("http://httpbin.org/post")
    String simplePost(@Body("name") String name);
}