Не удалось autowire поле: RestTemplate в приложении Spring boot

Я получаю ниже исключения при запуске приложения 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)}

Я автоматически подключаю RestTemplate в моем TestController. Я с помощью Maven зависимостей managagement.

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";
    }

}

пом.в 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>

5 ответов


это именно то, что ошибка говорит. Ты ничего не создал!--1--> bean, поэтому он не может автоматически подключаться. Если вам нужно RestTemplate вам придется предоставить один. Например, добавьте в TestMicroServiceApplication.java:

@Bean
public RestTemplate restTemplate() {
    return new RestTemplate();
}

обратите внимание, в более ранних версиях Spring cloud starter для Eureka, a RestTemplate Боб был создан для вас, но это уже не так.


если testresttemplate является допустимым вариантом в вашем модульном тесте, эта документация может быть актуальной

http://docs.spring.io/spring-boot/docs/1.4.1.RELEASE/reference/htmlsingle/#boot-features-rest-templates-test-utility

короткий ответ: при использовании

@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)

затем @Autowired будет работать. При использовании

@SpringBootTest(webEnvironment=WebEnvironment.MOCK)

затем создайте TestRestTemplate, как это

private TestRestTemplate template = new TestRestTemplate();

в зависимости от того, какие технологии вы используете и какие версии будут влиять на то, как вы определяете RestTemplate в своем @Configuration класса.

Spring > = 4 без пружинной загрузки

просто определить @Bean:

@Bean
public RestTemplate restTemplate() {
    return new RestTemplate();
}

Весенняя Загрузка

нет необходимости определять один, Spring Boot автоматически определяет его для вас.

Весенняя Загрузка >= 1.4

пружинный ботинок нет больше автоматически определяет RestTemplate но вместо этого определяет RestTemplateBuilder позволяет вам больше контролировать RestTemplate, который создается. Вы можете впрыснуть RestTemplateBuilder в качестве аргумента в свою @Bean метод для создания RestTemplate:

@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
   // Do any additional configuration here
   return builder.build();
}

используя его в своем классе

@Autowired
private RestTemplate restTemplate;

ссылка


ошибка указывает непосредственно, что RestTemplate Бин не определен в контексте, и он не может загрузить бобы.

  1. определите компонент для RestTemplate, а затем используйте его
  2. используйте новый экземпляр RestTemplate

Если вы уверены, что компонент определен для RestTemplate, используйте следующее Для печати компонентов, доступных в контексте, загруженном приложением spring boot

ApplicationContext ctx = SpringApplication.run(Application.class, args);
String[] beanNames = ctx.getBeanDefinitionNames();
Arrays.sort(beanNames);
for (String beanName : beanNames) {
    System.out.println(beanName);
}

Если это содержит Боб по имя / тип дано, тогда все хорошо. Или определите новый компонент и используйте его.


поскольку экземпляры RestTemplate часто необходимо настроить перед использованием, Spring Boot не предоставляет ни одного автоматически настроенного компонента RestTemplate.

RestTemplateBuilder предлагает правильно настроить и создать покой шаблона фасоли, например для basic auth или перехватчики.

@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
    return builder
                .basicAuthorization("user", "name") // Optional Basic auth example
                .interceptors(new MyCustomInterceptor()) // Optional Custom interceptors, etc..
                .build();
}