关于卡死、retryTemplate重启
今天去tolkenview去采集数据,期间使用restTemplate.getForObject
获取相应的数据,但是遇到了链接时间太长的问题。
所以需求就是时间太长,自动重新链接
使用 retryTemplate
简而言之,retryTemplate可以完成重试的操作
直接copy使用(心急版)
使用的是Springboot框架,lombok
1、在启动类里面,对retryTemplate进行设置注入
@EnableAsync
@Configuration
@SpringBootApplication
@EnableScheduling
public class xxxxApplication {
public static void main(String[] args) {
SpringApplication.run(xxxxApplication.class, args);
}
@Bean
public RestTemplate restTemplate(){
return new RestTemplate();