Не удалось 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)}

Я autowiring RestTemplate в моем TestController. Я использую 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";
    }

}

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

5 ответов:

это именно то, что ошибка говорит. Вы не создали никакого RestTemplate 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

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

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 предлагает правильный способ настройки и создания экземпляра REST template bean, например для базовой аутентификации или перехватчиков.

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