fire_point/src/main/java/com/xkrs/FirePointApplication.java

34 lines
1.1 KiB
Java
Raw Normal View History

2021-07-12 14:51:34 +08:00
package com.xkrs;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
2021-07-26 17:35:08 +08:00
import org.springframework.context.annotation.Bean;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.http.client.OkHttp3ClientHttpRequestFactory;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.StringHttpMessageConverter;
import org.springframework.web.client.RestTemplate;
import java.nio.charset.StandardCharsets;
import java.util.List;
2021-07-12 14:51:34 +08:00
2021-07-19 10:27:19 +08:00
/**
* @author XinYi Song
*/
2021-07-12 14:51:34 +08:00
@SpringBootApplication
public class FirePointApplication {
public static void main(String[] args) {
SpringApplication.run(FirePointApplication.class, args);
}
2021-07-26 17:35:08 +08:00
@Bean
public RestTemplate restTemplate() {
//Apache Httpclient
RestTemplate restTemplate = new RestTemplate(new HttpComponentsClientHttpRequestFactory());
restTemplate.getMessageConverters().set(1, new StringHttpMessageConverter(StandardCharsets.UTF_8));
return restTemplate;
}
2021-07-12 14:51:34 +08:00
}