Spring Boot Bean和依賴注入


在Spring Boot中,可以使用Spring Framework來定義bean及其依賴注入。 @ComponentScan注釋用於查詢bean以及使用@Autowired注釋注入的相應內容。

如果遵循Spring Boot典型布局,則無需為@ComponentScan注釋指定任何引數。 所有元件類檔案都自動註冊到Spring Beans。

以下範例提供了有關自動連線Rest Template物件並為其建立Bean程式碼片段 -

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

以下程式碼顯示主Spring Boot Application類檔案中自動連線的Rest Template物件和Bean建立物件的程式碼 -

package com.yiibai.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();   
   }
}