我在启动期间运行spring boot应用程序时遇到异常:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'testController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private org.springframework.web.client.RestTemplate com.micro.test.controller.TestController.restTemplate; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [org.springframework.web.client.RestTemplate] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}
我在TestController中自动装配RestTemplate。我正在使用Maven进行依赖管理。
TestMicroServiceApplication.java
package com.micro.test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TestMicroServiceApplication {
public static void main(String[] args) {
SpringApplication.run(TestMicroServiceApplication.class, args);
}
}
TestController.java
package com.micro.test.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
@RestController
public class TestController {
@Autowired
private RestTemplate restTemplate;
@RequestMapping(value="/micro/order/{id}",
method=RequestMethod.GET,
produces=MediaType.ALL_VALUE)
public String placeOrder(@PathVariable("id") int customerId){
System.out.println("Hit ===> PlaceOrder");
Object[] customerJson = restTemplate.getForObject("http://localhost:8080/micro/customers", Object[].class);
System.out.println(customerJson.toString());
return "false";
}
}
的pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.micro.test</groupId>
<artifactId>Test-MicroService</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Test-MicroService</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
答案 0 :(得分:109)
这正是错误所说的。您没有创建任何RestTemplate
bean,因此无法自动装配任何bean。如果您需要RestTemplate
,则必须提供一个@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
。例如,将以下内容添加到 TestMicroServiceApplication.java :
RestTemplate
请注意,在早期版本的Eureka的Spring云启动器中,为您创建了一个StringUtil
bean,但现在不再适用了。
答案 1 :(得分:12)
取决于您使用的技术以及哪些版本会影响您在RestTemplate
课程中定义@Configuration
的方式。
Spring&gt; = 4没有Spring Boot
只需定义@Bean
:
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
Spring Boot&lt; = 1.3
无需定义一个,Spring Boot会自动为您定义一个。
Spring Boot&gt; = 1.4
Spring Boot不再自动定义RestTemplate
,而是定义RestTemplateBuilder
,允许您更好地控制创建的RestTemplate。您可以在RestTemplateBuilder
方法中将@Bean
作为参数注入,以创建RestTemplate
:
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
// Do any additional configuration here
return builder.build();
}
在课堂上使用
@Autowired
private RestTemplate restTemplate;
答案 2 :(得分:7)
如果TestRestTemplate是单元测试中的有效选项,则此文档可能是相关的
简短回答:如果使用
@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)
然后@Autowired
将起作用。如果使用
@SpringBootTest(webEnvironment=WebEnvironment.MOCK)
然后像这样创建一个TestRestTemplate
private TestRestTemplate template = new TestRestTemplate();
答案 3 :(得分:1)
错误直接指出RestTemplate
bean未在上下文中定义,并且无法加载bean。
如果您确定为RestTemplate定义了bean,那么使用以下命令打印spring boot应用程序加载的上下文中可用的bean
ApplicationContext ctx = SpringApplication.run(Application.class, args);
String[] beanNames = ctx.getBeanDefinitionNames();
Arrays.sort(beanNames);
for (String beanName : beanNames) {
System.out.println(beanName);
}
如果这包含了给出的名称/类型的bean,那么一切都很好。或者定义一个新bean,然后使用它。
答案 4 :(得分:1)
由于RestTemplate实例在使用之前通常需要自定义,因此Spring Boot不提供任何单个自动配置的RestTemplate bean。
RestTemplateBuilder提供了配置和实例化其余模板bean的正确方法,例如基本身份验证或拦截器。
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
return builder
.basicAuthorization("user", "name") // Optional Basic auth example
.interceptors(new MyCustomInterceptor()) // Optional Custom interceptors, etc..
.build();
}
答案 5 :(得分:1)
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder){
return builder.build();
}
答案 6 :(得分:1)
您正在尝试注入restTemplate,但是您需要创建配置类。 那么您需要在其中创建返回新的RestTemplate的bean,请参见以下示例。
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class YourConfigClass {
@Bean
public RestTemplate restTesmplate() {
return new RestTemplate();
}
}
答案 7 :(得分:0)
请确保两件事:
1-将@Bean
注释与方法一起使用。
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder){
return builder.build();
}
2-此方法的范围应为公开,而不是私有。
完整示例-
@Service
public class MakeHttpsCallImpl implements MakeHttpsCall {
@Autowired
private RestTemplate restTemplate;
@Override
public String makeHttpsCall() {
return restTemplate.getForObject("https://localhost:8085/onewayssl/v1/test",String.class);
}
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder){
return builder.build();
}
}
答案 8 :(得分:0)
使用以下代码(reference)可以达到类似的壮举,这是最简单的方法, 但我建议不要在控制器(SOLID principles)中进行API调用。 与传统方式相比,这种方式的自动装配也更好。
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
@RestController
public class TestController {
private final RestTemplate restTemplate;
@Autowired
public TestController(RestTemplateBuilder builder) {
this.restTemplate = builder.build();
}
@RequestMapping(value="/micro/order/{id}", method= RequestMethod.GET, produces= MediaType.ALL_VALUE)
public String placeOrder(@PathVariable("id") int customerId){
System.out.println("Hit ===> PlaceOrder");
Object[] customerJson = restTemplate.getForObject("http://localhost:8080/micro/customers", Object[].class);
System.out.println(customerJson.toString());
return "false";
}
}