Very clear, to-the-point and succinct explanations. you ought to start classes locally. Thank you very much.
@sanjeevkumarrai34134 жыл бұрын
Very nice and crisp explanation, although we work everyday with http clients but ur videos are worth watching and refreshing
@shaikhmaheen5 жыл бұрын
Excellent tutorial very nicely prepared to the point and easy to understand
@parasrawat72874 жыл бұрын
Plain, Elegant and simple. Awesome.
@GuitarreroDaniel4 жыл бұрын
This was amazing man, thank you very much!
@vengateshm21223 жыл бұрын
Nice
@abdulraqeebm.33055 жыл бұрын
Amizing explaination !
@lawrencekatuva87353 жыл бұрын
Thank you
@chinmayachowdary5 жыл бұрын
Excellent.
@SaraSociales3 жыл бұрын
great!
@sharanyarai3785 жыл бұрын
Thanks for the tutorial. Why should i go for this when rest template can do the same ? Pls clarify
@DefogTech5 жыл бұрын
Good question. I haven't used rest template much so cannot say authoritatively.. but retrofit is most popular Android http library out there, and I am sure it has more features than rest template of spring
@letsengineer3675 жыл бұрын
RestTemplate is a good option to make an API call. We can also use Feign client to make HTTP calls, which is essentially an interface based approach and Spring would provide an implementation for the interface. We can also define our custom load-balancing mechanism to make such calls (In which case it is recommended to use a discovery server).
@niloysaha32295 жыл бұрын
How does it different from FeignClient which comes with Spring Cloud project?
@DefogTech5 жыл бұрын
Not much different. RestTemplate of Spring also can achieve similar things.
@a515754 жыл бұрын
How will we implement retry and timeout in retrofit
@Brajgamer4 жыл бұрын
This also supports completablefuture out of the box
@piece_of_me5 жыл бұрын
Are those slides available somewhere?
@samboy055 жыл бұрын
How is performance as compared to RestTemplate ?
@DefogTech5 жыл бұрын
Haven't checked but I'm positive it will be comparable. One thing spring template doesn't have it's asynchronous call.. for that you have to use new web client of spring 5.0
@deepakmarneni21105 жыл бұрын
How it is different from sleuth?
@DefogTech5 жыл бұрын
Sleuth is for distributed tracing isn't it? Retrofit is a simple http client