Beansと依存性注入
Spring Bootでは、Spring Frameworkを使用して、Beanとその依存性注入を定義できます。ザ・@ComponentScan アノテーションはBeanを検索するために使用され、対応する @Autowired 注釈。
Spring Bootの一般的なレイアウトに従っている場合は、引数を指定する必要はありません。 @ComponentScan注釈。すべてのコンポーネントクラスファイルは、SpringBeansに自動的に登録されます。
次の例は、RestTemplateオブジェクトの自動配線と同じBeanの作成に関するアイデアを提供します-
@Bean
public RestTemplate getRestTemplate() {
return new RestTemplate();
}
次のコードは、メインのSpring BootApplicationクラスファイル内の自動配線されたRESTテンプレートオブジェクトとBean作成オブジェクトのコードを示しています。
package com.tutorialspoint.demo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
public class DemoApplication {
@Autowired
RestTemplate restTemplate;
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@Bean
public RestTemplate getRestTemplate() {
return new RestTemplate();
}
}