An Url, Credentials works in RestClient UI as well as with Curl where as i\'m getting \"500\" error when access the same via Spring RestTemplate.
I am using the foll
Below works fine
For Post:
restTemplate.postForObject(url, parametersMap, Employee.class);
url is : String - rest api URL parametersMap - MultiValueMap Employee - object which needs to be converted from the JSON response