I have created a one rest service for uploading file. My service consume Stream for file and Map of String for some info.
@RequestMapping(value = "/upload" , method = RequestMethod.POST)
public void upload(InputStream file,Map<String, String> fileInfoMap) {}
If yes then how to call service with POSTMAN? if not then please suggest some alternatives?