标签:epo span string 适用于 service web and web服务 web服务器
适用于Android和Java的类型安全的HTTP客户端
Retrofit将你的HTTP API转换为一个Java接口。
public interface GitHubService { @GET("users/{user}/repos") Call<List<Repo>> listRepos(@Path("user") String user); }
Retrofit类生成一个GitHubService接口的实现。
Retrofit retrofit = new Retrofit.Builder() .baseUrl("https://api.github.com/") .build(); GitHubService service = retrofit.create(GitHubService.class);
创建的GitHubService的每个调用都可以向远程web服务器发出同步或异步HTTP请求。
使用注释来描述HTTP请求:
标签:epo span string 适用于 service web and web服务 web服务器
原文地址:https://www.cnblogs.com/bky1225987336/p/11662971.html