spring中bean的细节之三种创建Bean对象的方式
生活随笔
收集整理的這篇文章主要介紹了
spring中bean的细节之三种创建Bean对象的方式
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.learn</groupId><artifactId>day01_learn_04bean</artifactId><version>1.0-SNAPSHOT</version><packaging>jar</packaging><dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.2.RELEASE</version></dependency></dependencies>
</project>
package com.learn.ui;import com.learn.service.IAccountService;
import org.springframework.context.support.ClassPathXmlApplicationContext;/*** 模擬一個表現層,用于調用業務層*/
public class Client {/**** @param args*/public static void main(String[] args) {//1.獲取核心容器對象
// ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");ClassPathXmlApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");//2.根據id獲取Bean對象IAccountService as = (IAccountService)ac.getBean("accountService");as.saveAccount();//手動關閉容器ac.close();}
}
package com.learn.service;/*** 賬戶業務層的接口*/
public interface IAccountService {/*** 模擬保存賬戶*/void saveAccount();
}
package com.learn.service.impl;import com.learn.service.IAccountService;/*** 賬戶的業務層實現類*/
public class AccountServiceImpl implements IAccountService {public AccountServiceImpl(){System.out.println("對象創建了");}public void saveAccount(){System.out.println("service中的saveAccount方法執行了。。。");}public void init(){System.out.println("對象初始化了。。。");}public void destroy(){System.out.println("對象銷毀了。。。");}}
package com.learn.factory;import com.learn.service.IAccountService;
import com.learn.service.impl.AccountServiceImpl;/*** 模擬一個工廠類(該類可能是存在于jar包中的,我們無法通過修改源碼的方式來提供默認構造函數)*/
public class StaticFactory {public static IAccountService getAccountService(){return new AccountServiceImpl();}
}
package com.learn.factory;import com.learn.service.IAccountService;
import com.learn.service.impl.AccountServiceImpl;/*** 模擬一個工廠類(該類可能是存在于jar包中的,我們無法通過修改源碼的方式來提供默認構造函數)*/
public class InstanceFactory {public IAccountService getAccountService(){return new AccountServiceImpl();}
}
<?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/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><!--把對象的創建交給spring來管理--><!--spring對bean的管理細節1.創建bean的三種方式2.bean對象的作用范圍3.bean對象的生命周期--><!--創建Bean的三種方式 --><!-- 第一種方式:使用默認構造函數創建。在spring的配置文件中使用bean標簽,配以id和class屬性之后,且沒有其他屬性和標簽時。采用的就是默認構造函數創建bean對象,此時如果類中沒有默認構造函數,則對象無法創建。<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>--><!-- 第二種方式: 使用普通工廠中的方法創建對象(使用某個類中的方法創建對象,并存入spring容器)<bean id="instanceFactory" class="com.itheima.factory.InstanceFactory"></bean><bean id="accountService" factory-bean="instanceFactory" factory-method="getAccountService"></bean>--><!-- 第三種方式:使用工廠中的靜態方法創建對象(使用某個類中的靜態方法創建對象,并存入spring容器)<bean id="accountService" class="com.itheima.factory.StaticFactory" factory-method="getAccountService"></bean>--><!-- learnbean標簽的scope屬性:作用:用于指定bean的作用范圍取值: 常用的就是單例的和多例的singleton:單例的(默認值)prototype:多例的request:作用于web應用的請求范圍session:作用于web應用的會話范圍global-session:作用于集群環境的會話范圍(全局會話范圍),當不是集群環境時,它就是session<bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl" scope="prototype"></bean>--><!-- bean對象的生命周期單例對象出生:當容器創建時對象出生活著:只要容器還在,對象一直活著死亡:容器銷毀,對象消亡總結:單例對象的生命周期和容器相同多例對象出生:當我們使用對象時spring框架為我們創建活著:對象只要是在使用過程中就一直活著。死亡:當對象長時間不用,且沒有別的對象引用時,由Java的垃圾回收器回收--><bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"scope="prototype" init-method="init" destroy-method="destroy"></bean>
</beans>
?
總結
以上是生活随笔為你收集整理的spring中bean的细节之三种创建Bean对象的方式的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ioc的概念和作用
- 下一篇: spring的依赖注入