Spring 框架基礎(02):Bean的生命週期,作用域,裝配總結
本文原始碼: GitHub·點這裡 || GitEE·點這裡
一、裝配的方式
Bean的概念:Spring框架管理的應用程式中,由Spring容器負責建立,裝配,設定屬性,進而管理整個生命週期的物件,稱為Bean物件。
1、XML格式裝配
Spring最傳統的Bean的管理方式。
- 配置方式
<bean id="userInfo" class="com.spring.mvc.entity.UserInfo">
<property name="name" value="cicada" />
</bean>
- 測試程式碼
ApplicationContext context01 = new ClassPathXmlApplicationContext("/bean-scan-02.xml");
UserInfo userInfo = (UserInfo)context01.getBean("userInfo") ;
System.out.println(userInfo.getName());
2、註解掃描
在實際開發中:通常使用註解 取代 xml配置檔案。
- 常見註解
@Component <==> <bean class="Class"> @Component("id") <==> <bean id="id" class="Class"> @Repository :Mvc架構中Dao層Bean的註解 @Service:Mvc架構中Service層Bean的註解 @Controller:Mvc架構中Controller層Bean的註解
- 使用案例
// 1、註解程式碼塊
@Component("infoService")
public class InfoServiceImpl implements InfoService {
@Override
public void printName(String name) {
System.out.println("Name:"+name);
}
}
// 2、配置程式碼塊
@ComponentScan // 元件掃描註解
public class BeanConfig {
}
- 測試程式碼
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = BeanConfig.class)
public class Test01 {
@Autowired
private InfoService infoService ;
@Test
public void test1 (){
infoService.printName("cicada");
System.out.println(infoService==infoService);
}
}
3、XML配置掃描
上面使用 ComponentScan 註解,也可在配置檔案進行統一的配置,效果相同,還簡化程式碼。
<context:component-scan base-package="com.spring.mvc" />
4、Java程式碼裝配
這種基於Configuration註解,管理Bean的建立,在SpringBoot和SpringCloud的框架中,十分常見。
- 配置類程式碼
@Configuration // 配置類註解
public class UserConfig {
@Bean
public UserInfo userInfo (){
System.out.println("userInfo...");
return new UserInfo() ;
}
}
- 測試程式碼
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = UserConfig.class)
public class Test03 {
@Autowired
private UserInfo userInfo ;
@Autowired
private UserInfo userInfo1 ;
@Test
public void test1 (){
/*
* userInfo...
* true
*/
System.out.println(userInfo==userInfo1);
}
}
二、屬性值設定
上面是Bean的裝配幾種常見方式,下面來看看Bean屬性值設定,這裡就基於Xml配置的方式。
1、基礎型別和集合
- 配置程式碼
<!-- 配置Employee公共屬性 -->
<bean id="emp1" class="com.spring.mvc.entity.Employee">
<property name="name" value="cicada" />
<property name="id" value="1" />
</bean>
<bean id="emp2" class="com.spring.mvc.entity.Employee">
<property name="name" value="smile" />
<property name="id" value="2" />
</bean>
<!-- 配置Department屬性 -->
<bean id="department" class="com.spring.mvc.entity.Department">
<!-- 普通屬性值的注入 -->
<property name="name" value="IT部門" />
<!-- 給陣列注入值 -->
<property name="empName">
<list>
<value>empName1</value>
<value>empName2</value>
<value>empName3</value>
</list>
</property>
<!-- 給List注入值:可以存放相同的值 -->
<property name="empList">
<list>
<ref bean="emp1"/>
<ref bean="emp2"/>
<ref bean="emp1"/>
</list>
</property>
<!-- 配置Set屬性,相同的物件會被覆蓋 -->
<property name="empSet">
<set>
<ref bean="emp1"/>
<ref bean="emp2"/>
<ref bean="emp1"/>
</set>
</property>
<!-- 配置Map屬性,key相同的話,後面的值會覆蓋前面的 -->
<property name="empMap">
<map>
<entry key="1" value-ref="emp1" />
<entry key="2" value-ref="emp2" />
<entry key="2" value-ref="emp1" />
</map>
</property>
<!-- 配置屬性集合 -->
<property name="pp">
<props>
<prop key="pp1">Hello</prop>
<prop key="pp2">World</prop>
</props>
</property>
</bean>
- 測試程式碼
public class Test05 {
@Test
public void test01 (){
ApplicationContext context = new ClassPathXmlApplicationContext("/bean-value-03.xml");
Department department = (Department) context.getBean("department");
System.out.println(department.getName());
System.out.println("--------------------->String陣列");
for (String str : department.getEmpName()){
System.out.println(str);
}
System.out.println("--------------------->List集合");
for (Employee smp : department.getEmpList()){
System.out.println(smp.getId()+":"+smp.getName());
}
System.out.println("--------------------->Set集合");
for (Employee emp : department.getEmpSet()){
System.out.println(emp.getId()+":"+emp.getName());
}
System.out.println("--------------------->Map集合");
for (Map.Entry<String, Employee> entry : department.getEmpMap().entrySet()){
System.out.println(entry.getKey()+":"+entry.getValue().getName());
}
System.out.println("--------------------->Properties");
Properties pp = department.getPp();
System.out.println(pp.get("pp1"));
System.out.println(pp.get("pp2"));
}
}
2、配置建構函式
根據配置的引數個數和型別,去對映並載入Bean的構造方法。
- 配置程式碼
<!-- 這裡配置2個引數,所有呼叫2個引數的建構函式 -->
<bean id="employee" class="com.spring.mvc.entity.Employee">
<constructor-arg index="0" type="java.lang.String" value="cicada"/>
<constructor-arg index="1" type="int" value="1"/>
</bean>
- 測試程式碼
public class Test06 {
@Test
public void test01 (){
ApplicationContext context = new ClassPathXmlApplicationContext("/bean-value-04.xml");
Employee employee = (Employee) context.getBean("employee");
System.out.println(employee.getId()+":"+employee.getName());
}
}
3、配置繼承關係
- 配置程式碼
<!-- 配置父類資訊 -->
<bean id="student" class="com.spring.mvc.entity.Student">
<property name="name" value="Spring" />
<property name="age" value="22" />
</bean>
<!-- 配置子類資訊 -->
<bean id="grade" class="com.spring.mvc.entity.Grade">
<!-- 覆蓋 -->
<property name="name" value="Summer" />
<property name="degree" value="大學" />
</bean>
- 測試程式碼
public class Test07 {
@Test
public void test01 (){
ApplicationContext context = new ClassPathXmlApplicationContext("/bean-value-05.xml");
Grade grade = (Grade) context.getBean("grade");
/* Summer;0;大學 */
System.out.println(grade.getName()+";"+grade.getAge()+";"+grade.getDegree());
}
}
三、作用域
作用域:用於確定spring建立bean例項個數,比如單例Bean,原型Bean,等等。
型別 | 說明 |
---|---|
singleton | IOC容器僅建立一個Bean例項,IOC容器每次返回的是同一個單例Bean例項,預設配置。 |
prototype | IOC容器可以建立多個Bean例項,每次返回的Bean都是新的例項。 |
request | 每次HTTP請求都會建立一個新的Bean,適用於WebApplicationContext環境。 |
session | 同一個HTTP Session共享一個Bean例項。不同HTTP Session使用不同的例項。 |
global-session | 同session作用域不同的是,所有的Session共享一個Bean例項。 |
四、生命週期
在Spring框架中Bean的生命週期非常複雜,過程大致如下:例項化,屬性載入,初始化前後管理,銷燬等。下面基於一個案例配置,會更加的清楚。
1、編寫BeanLife類
public class BeanLife implements BeanNameAware {
private String name ;
public String getName() {
return name;
}
public void setName(String name) {
System.out.println("設定名稱:"+name);
this.name = name;
}
@Override
public void setBeanName(String value) {
System.out.println("BeanNameAware..SetName:"+value);
}
public void initBean() {
System.out.println("初始化Bean..");
}
public void destroyBean() {
System.out.println("銷燬Bean..");
}
public void useBean() {
System.out.println("使用Bean..");
}
@Override
public String toString() {
return "BeanLife [name = " + name + "]";
}
}
2、定製載入過程
實現BeanPostProcessor介面。
public class BeanLifePostProcessor implements BeanPostProcessor {
// 初始化之前對bean進行增強處理
@Override
public Object postProcessBeforeInitialization(Object obj, String beanName) throws BeansException {
System.out.println("初始化之前..."+beanName);
return obj ;
}
// 初始化之後對bean進行增強處理
@Override
public Object postProcessAfterInitialization(Object obj, String beanName) throws BeansException {
System.out.println("初始化之後..."+beanName);
// 改寫Bean的名稱
if (obj instanceof BeanLife){
BeanLife beanLife = (BeanLife)obj ;
beanLife.setBeanName("myBeanLifeTwo");
return beanLife ;
}
return obj ;
}
}
3、配置檔案
<!-- 載入Bean的處理器 -->
<bean class="com.spring.mvc.BeanLifePostProcessor" />
<!-- 指定初始化和銷燬方法 -->
<bean id="beanLife" class="com.spring.mvc.entity.BeanLife"
init-method="initBean" destroy-method="destroyBean">
<property name="name" value="myBeanLifeOne" />
</bean>
4、測試過程
- 測試程式碼
public class Test08 {
@Test
public void test01 (){
ApplicationContext context = new ClassPathXmlApplicationContext("/bean-value-06.xml");
BeanLife beanLife = (BeanLife) context.getBean("beanLife");
System.out.println("測試結果BeanLife:"+beanLife.getName()) ;
beanLife.useBean();
// 關閉容器
((AbstractApplicationContext) context).close();
}
}
- 輸出結果
1、設定名稱:myBeanLifeOne
2、BeanNameAware..SetName:beanLife
3、初始化之前...beanLife
4、初始化Bean..
5、初始化之後...beanLife
6、BeanNameAware..SetName:myBeanLifeTwo
7、測試結果BeanLife:myBeanLifeOne
8、使用Bean..
9、銷燬Bean..
這裡梳理Bean的生命週期,過程十分清晰。
五、原始碼地址
GitHub·地址
https://github.com/cicadasmile/spring-mvc-parent
GitEE·地址
https://gitee.com/cicadasmile/spring-mvc-parent
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69957347/viewspace-2677760/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- spring bean的作用域和生命週期SpringBean
- 詳解Spring中Bean的作用域與生命週期SpringBean
- Spring裝配Bean(六)Bean的作用域SpringBean
- Spring學習筆記二: Bean裝配及生命週期Spring筆記Bean
- Spring Bean的生命週期SpringBean
- Spring Bean 的生命週期SpringBean
- Spring Bean的生命週期SpringBean
- Spring Bean生命週期SpringBean
- Spring Bean 生命週期SpringBean
- Spring短生命週期bean注入長生命週期bean問題SpringBean
- Spring中bean的生命週期SpringBean
- Spring之Bean的生命週期SpringBean
- Spring教程-Spring Bean的生命週期SpringBean
- MyBatis 作用域和生命週期MyBatis
- 【Spring】Bean的LifeCycle(生命週期)SpringBean
- 面試Spring之bean的生命週期面試SpringBean
- bean的生命週期Bean
- Spring生命週期管理之總結Spring
- Android 基礎 -- Activity 生命週期實踐總結Android
- Spring原始碼:bean的生命週期(一)Spring原始碼Bean
- Spring原始碼:Bean的生命週期(二)Spring原始碼Bean
- 聊一聊Spring Bean 的生命週期SpringBean
- Spring原始碼:Bean生命週期(三)Spring原始碼Bean
- Spring原始碼:Bean生命週期(四)Spring原始碼Bean
- Spring原始碼:Bean生命週期(五)Spring原始碼Bean
- 【譯】WebAPI,Autofac,以及生命週期作用域WebAPI
- IOC - bean 生命週期Bean
- Spring中與bean有關的生命週期SpringBean
- JAVA面試題:Spring中bean的生命週期Java面試題SpringBean
- 【spring原始碼系列】之【Bean的生命週期】Spring原始碼Bean
- Spring核心系列之Bean的生命週期SpringBean
- activity的生命週期(總結)
- React 基礎_生命週期React
- vue生命週期總結Vue
- React生命週期總結React
- Activity生命週期總結
- fragment生命週期(總結)Fragment
- Mybatis學習-配置、作用域和生命週期MyBatis