我在启动过程中运行Sping 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进行依赖管理。
测试微服务应用程序.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);
}
}
测试控制器.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>
9条答案
按热度按时间smdncfj31#
这正是错误所显示的内容。您没有创建任何
RestTemplate
bean,因此它不能自动连接任何bean。如果您需要一个RestTemplate
,则必须提供一个。例如,将以下代码添加到TestMicroServiceApplication.java:从Sping Boot 1.4开始,还有一个方便的构建器,您可以自动连接并使用它来创建
RestTemplate
bean。请注意,在Spring Cloud Starter forEureka 的早期版本中,为您创建了一个
RestTemplate
bean,但现在已经不是这样了。fv2wmkja2#
根据您使用的技术和版本,将影响您在
@Configuration
类中定义RestTemplate
的方式。Spring〉= 4,不带 Spring Boot
只需定义一个
@Bean
:Spring Boot 〈= 1.3
不需要定义一个,Sping Boot 会自动为您定义一个。
Spring Boot 〉= 1.4
Sping Boot 不再自动定义
RestTemplate
,而是定义了RestTemplateBuilder
,允许您对创建的RestTemplate进行更多控制。您可以将RestTemplateBuilder
作为参数注入@Bean
方法,以创建RestTemplate
:在课堂上使用
Reference
gxwragnw3#
如果TestRestTemplate是单元测试中的有效选项,则此文档可能与
http://docs.spring.io/spring-boot/docs/1.4.1.RELEASE/reference/htmlsingle/#boot-features-rest-templates-test-utility
简短回答:如果使用
则
@Autowired
将起作用。如果使用然后创建一个如下所示的TestRestTemplate
这将有助于避免创建不会在测试之外使用的RestTemplate。
osh3o9ms4#
@Bean public RestTemplate restTemplate(RestTemplateBuilder builder){ return builder.build(); }
vatpfxk55#
您正在尝试注入restTemplate,但您需要创建配置类。然后,您需要创建返回新的RestTemplate的bean,请参见以下示例。
8hhllhi26#
由于RestTemplate示例通常需要在使用之前进行自定义,因此Sping Boot 不提供任何单个自动配置的RestTemplate bean。
RestTemplateBuilder提供了正确的方式来配置和示例化rest模板bean,例如用于基本的auth或拦截器。
bis0qfac7#
错误直接指出
RestTemplate
Bean未在上下文中定义,因此无法加载Bean。1.为RestTemplate定义一个Bean,然后使用它
1.使用RestTemplate的新示例
如果您确定已为RestTemplate定义了Bean,则使用以下命令输出Sping Boot 应用程序加载的上下文中可用的Bean
如果它包含给定名称/类型的bean,则一切正常。否则定义一个新bean并使用它。
uemypmqf8#
请确保两件事:
1-将
@Bean
注解与方法搭配使用。2-这个方法的范围应该是public,而不是private。
完整示例-
drnojrws9#
最简单的方法是使用下面的代码(reference),但我建议不要在控制器(SOLID principles)中进行API调用。而且这种自动配置方式比传统的方式更优化。