View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.common;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.http.converter.ByteArrayHttpMessageConverter;import org.springframework.web.client.RestTemplate;@Configurationpublic class BeansConfig {@Beanpublic RestTemplate restTemplate() {RestTemplate restTemplate = new RestTemplate();restTemplate.getMessageConverters().add(new ByteArrayHttpMessageConverter());return restTemplate;}}