无法在Spring Boot应用程序中自动装配field:RestTemplate


109

我在启动过程中运行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>

1
提出您的问题的原因并不明显,当一切都神奇地链接在一起时RestTemplate,不会自动为您创建一个。
daniel.eichten

赞成-Spring Boot自己页面上的教程对创建RestTemplate Bean毫无帮助!
马特

Answers:


174

错误恰恰说明了这一点。您没有创建任何RestTemplatebean,因此它无法自动装配任何bean。如果您需要一个RestTemplate,则必须提供一个。例如,将以下内容添加到TestMicroServiceApplication.java

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

请注意,在用于Eureka的Spring Cloud Starter的早期版本中,RestTemplate为您创建了一个bean,但这不再成立。


非常感谢您的回复。这有帮助!
库齐2014年

19
提出问题和答案的原因显然,RestTemplate当为您神奇地创建并链接了所有其他内容时,您必须手动创建一个。特别是如果使用过spring-cloud之前提供了自动配置的RestTemplate。;-)
daniel.eichten

2
老实说,这就是我将此问题放在论坛中的原因。我期望RestTemplate为我链接。:-)当我在POM.xml中包含Eureka依赖项时,此方法工作正常。没有定义RestTemplate bean,它工作正常。尤里卡(Eureka)的其中一类可能已经定义了这个bean左右。
Khuzi '16

4
只是一个更新。从Spring Boot 1.4.0起 RestTemplateBuilder可以用于管理RestTemplate实例。此处的示例spring.io/guides/gs/standing-rest
Mensur

我还不能升级到SB 1.4.0。我想用1.3.8.RELEASE来做到这一点,但是@ g00glen00b解决方案对我不起作用。我还在spring-cloud-netflix版本中使用了artifactid 1.1.5.RELEASE。我的RestTemplate是从用于的@RestControllerjava类中调用@AutowiredRestTemplate。有人可以帮忙吗?
ZeroGraviti '16

33

取决于您使用的技术和版本会影响您RestTemplate@Configuration班级中定义a 的方式。

没有Spring Boot的Spring> = 4

只需定义一个@Bean

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

春季靴<= 1.3

无需定义一个,Spring Boot会自动为您定义一个。

春季靴> = 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;

参考


8

如果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();

1

错误直接指出RestTemplate未在上下文中定义Bean,因此无法加载Bean。

  1. 为RestTemplate定义一个bean,然后使用它
  2. 使用RestTemplate的新实例

如果您确定为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,然后使用它。


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();
}


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();
}
}

0

我能够使用以下代码(参考)获得类似的壮举的最简单方法,但我建议不要在控制器中进行API调用(SOLID原则)。此外,与传统方式相比,这种方式的自动装配更好。

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

0

您正在尝试注入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();
    }

}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.