Use annotations to describe the HTTP request:
URL parameter replacement and query parameter support
Object conversion to request body (e.g., JSON, protocol buffers)
Multipart request body and file upload
三大特点:
- 使用注释描述HTTP请求接口,可传入URL和qurey参数
- 支持请求体和结果通过Gson等协议方式转换
- 多部分请求主体和文件上传?这个暂时不理解
GRADLE配置:
compile 'com.squareup.retrofit2:retrofit:+'
more >>