Retrofit 2 재연 구
1. 특성
retrofit2.Call<T>
은 서버 에 요청 을 보 내 고 해당 결 과 를 되 돌려 주 며 취소 할 수 있 고 동기 화 요청 도 할 수 있 으 며 비동기 요청 도 할 수 있다.Volley 의 RequestQueue 와 유사 합 니 다.이것 은 형식 이 안전 합 니 다. 모든 Call 은 한 번 만 조정 할 수 있 고 request 와 response 는 일일이 대응 하 며 clone 을 통 해 같은 요청 을 수행 할 수 있 습 니 다.참고: JSON 은 상속 에 대한 제약 이 없 기 때 문 입 니 다.그래서 우 리 는 어떤 정확 한 조건 을 통 해 한 대상 이 JSON 대상 인지 아 닌 지 를 판단 할 수 없다.그래서 JSON 의 converters 는 모든 데이터 에 대해 '내 가 처리 할 수 있어!' 라 고 대답 할 것 이다.이것 은 반드시 기억 해 야 합 니 다. JSON converter 는 반드시 마지막 에 두 어야 합 니 다. 그렇지 않 으 면 당신 의 기대 와 맞지 않 을 것 입 니 다.
Call<T>
입 니 다. 현재 이미 실현 되 었 습 니 다.Response<T>
Response 는 변 환 된 대상 을 가지 고 있 습 니 다. Response. body () 를 통 해 T 형식의 반환 데 이 터 를 얻 을 수 있 습 니 다. Response 대상 에는 응답 코드 (the reponse code), 응답 메시지 (the response message), 응답 헤더 (headers) 도 포함 되 어 있 습 니 다. @POST("users/new")
Call<User> createUser(@Body User user);
interface GitHubService {
@GET("/repos/{owner}/{repo}/contributors")
Call<List<Contributor>> repoContributors(
@Path("owner") String owner,
@Path("repo") String repo);
@GET
Call<List<Contributor>> repoContributorsPaginate(
@Url String url);
}
Response<List<Contributor>> response = call.execute();
// HTTP/1.1 200 OK
// Link: <https://api.github.com/repositories/892275/contributors?
page=2>; rel="next", <https://api.github.com/repositories/892275/
contributors?page=3>; rel="last"
// ...
String links = response.headers().get("Link");
String nextLink = nextFromGitHubLinks(links);
// https://api.github.com/repositories/892275/contributors?page=2
Call<List<Contributor>> nextCall =
gitHubService.repoContributorsPaginate(nextLink);
// Look up a converter for the Error type on the Retrofit instance.
Converter<ResponseBody, Error> errorConverter =
retrofit.responseBodyConverter(Error.class, new Annotation[0]);
// Convert the error body into our Error type.
Error error = errorConverter.convert(response.errorBody());
System.out.println("ERROR: " + error.message);
Gson gson = new GsonBuilder()
.setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ")
.create();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("http://api.nuuneoi.com/base/")
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
service = retrofit.create(APIService.class);
On Retrofit 1.9, if the fetched response couldn’t be parsed into the defined Object, failure will be called. But in Retrofit 2.0, whether the response is be able to parse or not, onResponse will be always called. But in the case the result couldn’t be parsed into the Object, response.body() will return as null. Don’t forget to handle for the case.
call Service method- >serviceMethod.callAdapter.adapt(okHttpCall);
retrofit 2. Call. execute () 호출 을 수행 하 는 방법, 전송 요청 convert - 변환 retrofit2.OkHttpCall.execute()->parseResponse(rawCall.execute())
rawCall. execute () - 실행 okhttp3.RealCall.execute()
intercept - 차단 sendRequest - 요청 ApplicationInterceptorChain.proceed() // in RealCall class
우선 순위: 적합 - 집행 - 차단 - 요청 - 차단 - 전환 -dontwarn retrofit2.** -keep class retrofit2.* { ; } -keepattributes Signature -keepattributes Exceptions
Volley vs Retrofit2
Features
Volley
Retrofit2
업로드
√
√
다운로드 하 다.
×
√
동기 화
√
√
요청 우선 순위
√
×
다시 시도 하 다
√
√
패 키 징 가능 및 확장 성
우수 하 다.
선량 하 다.
용이 성
선량 하 다.
우수 하 다.
Response
string/iamge/jsonobject
대상
헤더 조작
√
√
문서.
적다.
많다
jar 가방 크기
92k
85k
API
적다.
풍부 하 다.
모델 코드
많다
적다.
Okhttp
√
√
Http Cache
√
√
Okhttp
√
√
동적 Url
√
√
Restful Api
×
√
차단기
×
√
rxjava/guava/java8
×
√
버 전 업데이트
느리다
빠르다.
최신 버 전
1.0.19(2015/9)
2.0.2(2016/4/11)
플랫폼
android
java/android
Restful API
지원 가능
지원 됨
Retrofit 기본 패키지 방안:https://github.com/simplify20/RetrofitDemos 참고:https://realm.io/news/droidcon-jake-wharton-simple-http-retrofit-2/ https://inthecheesefactory.com/blog/retrofit-2.0/en http://riggaroo.co.za/retrofit-2-mocking-http-responses/ http://vickychijwani.me/retrofit-vs-volley/ http://stackoverflow.com/questions/29119253/retrofit-okhttp-client-how-to-cache-the-response/31097050#31097050https://github.com/square/retrofit/issues/820 http://stackoverflow.com/questions/32579754/retrying-the-request-using-retrofit-2/32840088#32840088
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.