1.以ApplocationContext上下文單例模式裝配bean為例,深入探討bean的生命周期:
(1).生命周期圖:
(2).具體事例:
person類實現BeanNameAware,BeanFactoryAware接口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
public class Person implements BeanNameAware ,BeanFactoryAware{ private String name; public Person(){ System.out.println( "調用構造器為屬性值初始化" ); } public String getName() { return name; } public void setName(String name) { this .name = name; } @Override public void setBeanName(String arg0) { // TODO Auto-generated method stub System.out.println( "獲取beanName id值" + " " +arg0); } @Override public void setBeanFactory(BeanFactory arg0) throws BeansException { // TODO Auto-generated method stub System.out.println( "獲取BeanFactory" + " " +arg0); } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
public class MyBeanPostProcessor implements BeanPostProcessor{ @Override public Object postProcessAfterInitialization(Object arg0, String arg1) throws BeansException { // TODO Auto-generated method stub System.out.println( "調用postProcessAfterInitialization" ); return arg0; } @Override public Object postProcessBeforeInitialization(Object arg0, String arg1) throws BeansException { // TODO Auto-generated method stub System.out.println( "調用postProcessBeforeInitialization" ); return arg0; } } |
ApplicationContext.xml配置文件:
1
2
3
4
5
6
7
8
9
10
11
|
<? xml version = "1.0" encoding = "UTF-8" ?> < beans xmlns = "http://www.springframework.org/schema/beans" xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation = "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd" > <!-- bean的配置文件 --> < bean id = "person" class = "org.jingdong.bean.life.Person" > < property name = "name" value = "grl" ></ property > </ bean > < bean id = "myBeanPostProcessor" class = "org.jingdong.bean.life.MyBeanPostProcessor" ></ bean > </ beans > |
Main.java
1
2
3
4
5
6
7
8
9
10
|
public class Main { public static void main(String[] args) { // 創建IOC容器 ApplicationContext ac = new ClassPathXmlApplicationContext( "org/jingdong/bean/life/applicationContext.xml" ); //從容器中獲取bean實例 Person person = (Person) ac.getBean( "person" ); //使用bean System.out.println(person.getName()); } } |
2.以Spring Factory裝配bean為例:
(1).生命周期圖:
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。
原文鏈接:http://www.cnblogs.com/grl214/p/6623575.html