Retrofit2:
作用:
通过封装okhttp库,来进行web通讯,并且使用动态代理的方式,来调用接口地址,通过回调赋值结果。
栗子:
定义一个接口,用于访问使用。
public interface IServiceApi { @FormUrlEncoded @POST("login") Calllogin(@Field("name") String name, @Field("pwd") String pwd); @GET("getinfo") Callgetinfo(@Query("token") String token); @GET("getinfo2") Callgetinfo2(@Query("token") String token); }
调用接口1.可以在main中调用,因为是通过异步执行(enqueue)
Retrofit retrofit = new Retrofit.Builder().addConverterFactory(GsonConverterFactory.create()).baseUrl("http://192.168.86.11:8087/").build(); IServiceApi api = retrofit.create(IServiceApi.class); Callcall = api.login("test", "test1234"); call.enqueue(new Callback() { @Override public void onResponse(Callcall, Response response) { LoginResult loginResult = response.body(); if(loginResult != null) { } } @Override public void onFailure(Call call, Throwable t) { Log.i(tag, "ex " + t.getMessage()); } });
调用接口2.可以在main中调用,因为是通过异步执行(enqueue)
Retrofit retrofit = new Retrofit.Builder().addConverterFactory(GsonConverterFactory.create()).baseUrl("http://192.168.86.11:8087/").build(); IServiceApi api = retrofit.create(IServiceApi.class); Callcall = api.getinfo("testtesttest"); call.enqueue(new Callback() { @Override public void onResponse(Callcall, Response response) { UserInfo userInfo = response.body(); if(userInfo != null) { } } @Override public void onFailure(Call call, Throwable t) { Log.i(tag, "ex " + t.getMessage()); } });
同步调用接口3.
Retrofit retrofit = new Retrofit.Builder().addConverterFactory(GsonConverterFactory.create()).baseUrl("http://192.168.86.11:8087/").build(); IServiceApi api = retrofit.create(IServiceApi.class); Callcall = api.login("test", "test1234"); try { ResponseresultResponse = call.execute(); LoginResult result = resultResponse.body(); }catch (Exception e){ e.printStackTrace(); }
源码解读:
A:异步调用
1、创建一个Retrofit对象。
2、retrofit.create(IServiceApi.class); // 使用Proxy.newProxyInstance 创建一个接口的代理对象。内部使用 ServiceMethod配合OkHttpCall调用,构造他们需要的对象数据
3、调用enqueue,内部构造okhttp3.Call对象,执行对象的enqueue方法。然后在okhttp3$Callback方法中,调用retrofit2的 回调,赋值成功和失败。
B:同步调用
1、同理,同步调用,最后也是调用的。okhtt3.Call的execute方法。
源码:https://github.com/square/retrofit
引入:
implementation 'com.squareup.retrofit2:retrofit:2.0.2' implementation 'com.squareup.retrofit2:converter-gson:2.0.2' implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.squareup.retrofit2:adapter-rxjava:2.0.2'