ไม่สามารถป้อนข้อมูลอัตโนมัติในช่อง: RestTemplate ในแอปพลิเคชัน Spring boot


115

ฉันได้รับข้อยกเว้นต่ำกว่าในขณะที่เรียกใช้แอปพลิเคชันสปริงบูตระหว่างการเริ่มต้น:

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 สำหรับการจัดการการพึ่งพา

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
การเพิ่มคะแนนคำถามของคุณทำให้ไม่ชัดเจนว่าเมื่อทุกอย่างเชื่อมโยงอย่างน่าอัศจรรย์ a RestTemplateจะไม่ถูกสร้างขึ้นโดยอัตโนมัติสำหรับคุณ
daniel.eichten

Upvoted - บทช่วยสอนในหน้าของ Spring Boot บอกว่าไม่มีอะไรเกี่ยวกับการสร้าง RestTemplate Bean !!
Matt

คำตอบ:


177

ตรงตามที่ข้อผิดพลาดบอก คุณไม่ได้สร้างRestTemplatebean ใด ๆดังนั้นจึงไม่สามารถทำงานอัตโนมัติได้ หากคุณต้องการRestTemplateคุณจะต้องจัดหาให้ ตัวอย่างเช่นเพิ่มสิ่งต่อไปนี้ในTestMicroServiceApplication.java :

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

หมายเหตุในเวอร์ชันก่อนหน้าของ Spring cloud starter สำหรับ Eureka จะมีการสร้างRestTemplatebean สำหรับคุณ แต่สิ่งนี้ไม่เป็นความจริงอีกต่อไป


ขอบคุณมากสำหรับการตอบกลับของคุณ สิ่งนี้ช่วยได้!
Khuzi

20
เพิ่มคะแนนคำถามและคำตอบของคุณทำให้ไม่ชัดเจนว่าคุณต้องสร้างด้วยตนเองRestTemplateเมื่อทุกอย่างถูกสร้างขึ้นและเชื่อมโยงอย่างน่าอัศจรรย์สำหรับคุณ โดยเฉพาะอย่างยิ่งถ้าหนึ่งที่ใช้ในฤดูใบไม้ผลิเมฆก่อนซึ่งมี RestTemplateautoconfigured ;-)
daniel.eichten

2
จริงๆแล้วนั่นคือเหตุผลที่ฉันใส่ปัญหานี้ไว้ที่นี่ในฟอรัม ฉันคาดหวังว่า RestTemplate จะเชื่อมโยงให้ฉัน :-) มันใช้งานได้ดีเมื่อฉันรวมการพึ่งพายูเรก้าไว้ใน POM.xml มันทำงานได้ดีโดยไม่ต้องกำหนด RestTemplate bean หนึ่งในคลาสของ Eureka อาจกำหนดถั่วนี้หรือมากกว่านั้น
Khuzi

4
เพียงแค่การปรับปรุง จาก Spring Boot 1.4.0 RestTemplateBuilderสามารถใช้สำหรับจัดการRestTemplateอินสแตนซ์ ตัวอย่างที่นี่spring.io/guides/gs/consuming-rest
Mensur

ฉันยังไม่สามารถอัพเกรดเป็น SB 1.4.0 ได้ ฉันต้องการทำสิ่งนี้ด้วย 1.3.8.RELEASE แต่โซลูชัน @ g00glen00b ไม่ได้ผลสำหรับฉัน ฉันกำลังใช้spring-cloud-netflixartifactid กับเวอร์ชัน1.1.5.RELEASEด้วย RestTemplate ของฉันถูกเรียกจาก@RestControllerคลาส java ซึ่งใช้@Autowiredสำหรับไฟล์RestTemplate. ใครช่วยหน่อยได้ไหม
ZeroGraviti

35

ขึ้นอยู่กับเทคโนโลยีที่คุณใช้และเวอร์ชันใดที่จะมีผลต่อวิธีการที่คุณกำหนดRestTemplateใน@Configurationชั้นเรียนของคุณ

Spring> = 4 โดยไม่ต้อง Spring Boot

เพียงกำหนด@Bean:

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

สปริงบูต <= 1.3

ไม่จำเป็นต้องกำหนดอย่างใดอย่างหนึ่ง Spring Boot จะกำหนดให้คุณโดยอัตโนมัติ

สปริงบูต> = 1.4

Spring Boot ไม่ได้กำหนด a โดยอัตโนมัติอีกต่อไป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

ข้อผิดพลาดชี้ให้เห็นโดยตรงว่าRestTemplatebean ไม่ได้กำหนดไว้ในบริบทและไม่สามารถโหลด bean ได้

  1. กำหนด bean สำหรับ RestTemplate แล้วใช้
  2. ใช้อินสแตนซ์ใหม่ของ RestTemplate

หากคุณแน่ใจว่ากำหนด bean ไว้สำหรับ RestTemplate แล้วให้ใช้สิ่งต่อไปนี้เพื่อพิมพ์ bean ที่มีอยู่ในบริบทที่โหลดโดย spring boot application

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

หากสิ่งนี้มีถั่วตามชื่อ / ประเภทที่กำหนดก็จะดีทั้งหมด หรือกำหนดถั่วใหม่แล้วใช้


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 แต่คุณต้องสร้างคลาสการกำหนดค่า จากนั้นคุณต้องสร้าง bean ที่ส่งคืน RestTemplate ใหม่ให้คุณดูตัวอย่างด้านล่าง

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;


@Configuration
public class YourConfigClass {


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

}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.