Consider defining a bean of type 'XXX' in your configuration问题
在进行第三方接口对接获取对方的数据的时候使用了RestTemplate来获取,而RestTemplate通过TestRestTemplate来初始化,注入TestRestTemplate:
@Autowired
private TestRestTemplate testRestTemplate;
运行项目后发生如下错误:
Consider defining a bean of type 'TestRestTemplate' in your configuration
大概意思是自动注入时找不到TestRestTemplate,解决方法如下:
@Configuration
public class Config {
@Bean
@LoadBalanced
public TestRestTemplate restTemplate() {
return new TestRestTemplate();
}
}

浙公网安备 33010602011771号