個人回答:
1.作用物件不同:@Component 註解作用於類,而 @Bean 註解作用於方法、
2.@Component 通常是透過路徑掃描來自動偵測以及自動裝配到 Spring 容器中(我們可以使用 @ComponentScan 註解定義要掃描的路徑從中找出標識了需要裝配的類自動裝配到 Spring 的 bean 容器中)。@Bean 註解通常是我們在標有該註解的方法中定義產生這個 bean,
@Bean 告訴了 Spring 這是某個類的例項,當我們需要用它的時候還給我。
3.@Bean 註解比 @Component 註解的自定義性更強,而且很多地方我們只能透過 @Bean 註解來註冊 bean。比如當我們引用第三方庫中的類需要裝配到 Spring 容器時,只能透過 @Bean 來實現。
@bean的作用範圍singleton prototype request session global session後面幾個和當初servlet作用域差不多
生命週期:init-method destroy-method
註解中@Component和@Bean的區別
實體 POJO
public class Person {
private String name;
private Integer age;
public Person() {
}
public Person(String name, Integer age) {
this.name = name;
this.age = age;
}
// 省略 getter setter
// 後續會省略 toString 方法, 使用 IDE 自動生成就可以了
@Override
public String toString() {
return "Person{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
}
xml 配置方式
<bean id="person" class="me.sjl.bean.Person">
<property name="age" value="18"/>
<property name="name" value="sjl"/>
</bean>
測試程式碼
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:/applicationContext.xml");
Person person = (Person) ctx.getBean("person");
System.out.println(person);
}
測試結果
bean 建立成功
以上是我們使用傳統的 xml 配置方式建立一個 bean 的方式,下面我們使用註解來建立一個 bean。
@Bean
JavaConfig 方式
@Configuration
public class BeanConfig {
@Bean
public Person person() {
return new Person("SJL01", 20);
}
}
在配置類上打個一個 @Configuration 註解,表示宣告該類為 Spring 的配置類。在建立一個方法,方法返回物件即我們要建立的物件 Person , 返回該物件的例項。在方法上打上註解 @Bean即表示宣告該方法返回的例項是受 Spring 管理的 Bean。
測試程式碼
@Test
public void test2() {
ApplicationContext ctx = new AnnotationConfigApplicationContext(BeanConfig.class);
Person person = ctx.getBean(Person.class);
System.out.println(person);
}
結果
使用註解方法建立 bean 成功
這裡使用的是 AnnotationConfigApplicationContext() 類,傳入引數就是 配置類
@Bean 註解的屬性解析
value
name
name 和 value 兩個屬性是相同的含義的, 在程式碼中定義了別名。 為 bean 起一個名字,如果預設沒有寫該屬性,那麼就使用方法的名稱為該 bean 的名稱
autowire
裝配方式 有三個選項
Autowire.NO (預設設定)
Autowire.BY_NAME
Autowire.BY_TYPE
指定 bean 的裝配方式, 根據名稱 和 根據型別 裝配, 一般不設定,採用預設即可
initMethod
bean 的初始化方法, 直接指定方法名稱即可,不用帶括號
@Configuration
public class BeanConfig {
@Bean(initMethod = "init")
public Person person() {
return new Person("SJL01", 20);
}
}
Person 類新增 init() 方法
public void init() {
System.out.println("init ............");
}
destroyMethod
bean 的銷燬方法, 在呼叫 IoC 容器的 close() 方法時,會執行到該屬性指定的方法。不過,只是單例項的 bean 才會呼叫該方法,如果是多例項的情況下,不會呼叫該方法
@Bean(destroyMethod = "destroy")
public Person person() {
return new Person("SJL01", 20);
}
Person 類新增 destroy() 方法
public void destroy() {
System.out.println(" destroy ...............");
}
兩者的目的是一樣的,都是註冊bean到Spring容器中
1、@Component註解表明一個類會作為元件類,並告知Spring要為這個類建立bean。
2、@Bean註解告訴Spring這個方法將會返回一個物件,這個物件要註冊為Spring應用上下文中的bean。通常方法體中包含了最終產生bean例項的邏輯。
區別:
1、@Component(@Controller、@Service、@Repository)通常是透過類路徑掃描來自動偵測以及自動裝配到Spring容器中。
2、而@Bean註解通常是我們在標有該註解的方法中定義產生這個bean的邏輯。
3、@Component 作用於類,@Bean作用於方法
Spring幫助我們管理Bean分為兩個部分
- 一個是註冊Bean(@Component , @Repository , @ Controller , @Service , @Configration),
- 一個裝配Bean(@Autowired , @Resource,可以透過byTYPE(@Autowired)、byNAME(@Resource)的方式獲取Bean)。
完成這兩個動作有三種方式,一種是使用自動配置的方式、一種是使用JavaConfig的方式,一種就是使用XML配置的方式。
@Compent 作用就相當於 XML配置
@Component
public class Student {
private String name = "lkm";
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
@Bean 需要在配置類中使用,即類上需要加上@Configuration註解
@Configuration
public class WebSocketConfig {
@Bean
public Student student(){
return new Student();
}
}
兩者都可以透過@Autowired裝配
@Autowired
Student student;
那為什麼有了@Component,還需要@Bean呢?
如果你想要將第三方庫中的元件裝配到你的應用中,在這種情況下,是沒有辦法在它的類上新增@Component註解的,因此就不能使用自動化裝配的方案了,但是我們可以使用@Bean,當然也可以使用XML配置。