起動時にスプリングブートアプリケーションを実行しているときに、次の例外が発生しています
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>
それはまさにエラーが言うことです。 RestTemplate
Beanを作成しなかったため、自動配線できません。 RestTemplate
が必要な場合は、提供する必要があります。たとえば、次をTestMicroServiceApplication.Javaに追加します。
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
EurekaのSpringクラウドスターターの以前のバージョンでは、RestTemplate
Beanが作成されていましたが、これは事実ではありません。
使用しているテクノロジとバージョンによって、@Configuration
クラスでRestTemplate
を定義する方法に影響します。
スプリング> = 4スプリングブートなし
@Bean
を定義するだけです:
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
スプリングブート<= 1.3
定義する必要はありません。SpringBootは自動的に定義します。
スプリングブート> = 1.4
Spring BootはRestTemplate
を自動的に定義しなくなりましたが、代わりにRestTemplateBuilder
を定義して、作成されるRestTemplateをより詳細に制御できるようにします。 @Bean
メソッドの引数としてRestTemplateBuilder
を注入して、RestTemplate
を作成できます。
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder) {
// Do any additional configuration here
return builder.build();
}
クラスで使用する
@Autowired
private RestTemplate restTemplate;
TestRestTemplateが単体テストで有効なオプションである場合、このドキュメントは関連する可能性があります
短い答え:使用する場合
@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)
その後、@Autowired
が機能します。使用する場合
@SpringBootTest(webEnvironment=WebEnvironment.MOCK)
次に、このようなTestRestTemplateを作成します
private TestRestTemplate template = new TestRestTemplate();
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();
}
エラーは、RestTemplate
Beanがコンテキストで定義されておらず、Beanをロードできないことを直接示しています。
BeanがRestTemplateに対して定義されていることが確実な場合は、次を使用して、スプリングブートアプリケーションによってロードされたコンテキストで使用可能な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を定義してから使用します。
次の2つのことを確認してください。
1-メソッドで@Bean
注釈を使用します。
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder){
return builder.build();
}
2-このメソッドのスコープはpublicではなくprivateである必要があります。
完全な例-
@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();
}
}