(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
/********** | |
* Here is a method showing use of OkHttp for posting a multipart form data | |
* | |
* Here RPResumeResponseDTO is a custom DTO being used in the project | |
* For taking file from rest api endpoint we are using as a multipart file parameter | |
**********/ | |
/**************Steps *******************/ | |
RPResumeResponseDTO postResumeToRPServer(MultipartFile file) throws IOException { | |
log.debug("Request to post file : {}",file.getOriginalFilename()); |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.