[JAVAEE] 實(shí)驗(yàn)03:Spring Bean的配置翁垂、實(shí)例化铆遭、作用域、生命周期與裝配方式

【一】實(shí)驗(yàn)?zāi)康模?/h1>

(1)掌握Bean的實(shí)例化
(2)掌握Bean的裝配方式
(3)掌握Bean的作用域和生命周期

【二】結(jié)構(gòu):

1配置(不具體介紹)
2實(shí)例化:構(gòu)造方法實(shí)例化(最常用)沿猜、靜態(tài)工廠實(shí)例化枚荣、實(shí)例工廠實(shí)例化
3作用域
4生命周期
5裝配方式

【三】實(shí)驗(yàn)代碼:

一、實(shí)例化

 BeanClass.java
package instance;
//一啼肩、bean的構(gòu)造方法之 實(shí)例化(最常用)
public class BeanClass {    
    public String message;
    public BeanClass() {
        message = "構(gòu)造方法實(shí)例化Bean";
    }
    public BeanClass(String s) {
        message = s;
    }
}
BeanInstanceFactory.java
package instance;
public class BeanInstanceFactory {
    public BeanClass createBeanClassInstance() {
        return new BeanClass("調(diào)用實(shí)例工廠方法實(shí)例化Bean");
    }
}

BeanStaticFactory.java

package instance;
//二棍弄、bean實(shí)例化之 靜態(tài)工廠實(shí)例化
public class BeanStaticFactory {
    
    private static BeanClass beanInstance = new BeanClass("調(diào)用靜態(tài)工廠方法實(shí)例化Bean");
    public static BeanClass createInstance() {
        return beanInstance;
    }
}

配置文件:ApplicationContext.xml

    <!-- 一、構(gòu)造方法實(shí)例化Bean -->
    <bean id="constructorInstance" class="instance.BeanClass" scope="prototype"/>
    
    <!-- 二疟游、靜態(tài)工廠方法實(shí)例化Bean,createInstance為 靜態(tài)工廠類BeanStaticFactory中的靜態(tài)方法-->
    <bean id="staticFactoryInstance" class="instance.BeanStaticFactory"  factory-method="createInstance"/>
    
    <!-- 三呼畸、配置工廠 -->
    <bean id="myFactory" class="instance.BeanInstanceFactory"/>
    <!-- 還需要使用factory-bean屬性指定配置工廠,應(yīng)為這個(gè)是對(duì)象方法而不是類方法 颁虐,使用factory-method屬性指定使用工廠中哪個(gè)方法實(shí)例化Bean-->
    <bean id="instanceFactoryInstance" factory-bean="myFactory" factory-method="createBeanClassInstance"/>

測(cè)試:TestInstance.java

package test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import instance.BeanClass;
public class TestInstance {
    public static void main(String[] args) {
        //初始化spring容器蛮原,通過(guò)路徑加載配置文件
        @SuppressWarnings("resource")
        ApplicationContext appCon = new ClassPathXmlApplicationContext("applicationContext.xml");
        //一、構(gòu)造方法的
        BeanClass b1 = (BeanClass)appCon.getBean("constructorInstance");
        System.out.println(b1 + "------" + b1.message);
        
        //二另绩、靜態(tài)工廠的
        BeanClass b2 = (BeanClass)appCon.getBean("staticFactoryInstance");
        System.out.println(b2+ "------" +b2.message);
        
        //三儒陨、實(shí)例工廠的
        BeanClass b3 = (BeanClass)appCon.getBean("instanceFactoryInstance");
        System.out.println(b3+ "------" +b3.message);
        
    }
}
實(shí)例化1
實(shí)例化2
實(shí)例化3

二、作用域(可作用的范圍)

    <!-- 構(gòu)造方法實(shí)例化Bean 笋籽,并設(shè)置為 prototype蹦漠,默認(rèn)為singleleton-->
    <bean id="constructorInstance" class="instance.BeanClass" scope="prototype"/>
作用域1

三、生命周期

配置文件:

    <!-- 3.1车海、配置bean的生命周期笛园,使用init-method屬性指定初始化方法,使用 destroy-method屬性指定銷毀方法-->
    <bean id="beanLife" class="life.BeanLife" init-method="initMyself" destroy-method="destroyMyself"/>


BeanLife.java
package life;
public class BeanLife {
    //相當(dāng)于回調(diào)侍芝,以后可以寫數(shù)據(jù)庫(kù)的方法
    public void initMyself() {
        System.out.println(this.getClass().getName() + "?執(zhí)行自定義的初始化方法");
    }
    public void destroyMyself() {
        System.out.println(this.getClass().getName() +"執(zhí)行自定義的銷毀方法");
    }
}
TestLife.java
package test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import life.BeanLife;
public class TestLife {
    public static void main(String[] args) {
        //初始化容器研铆,加載配置文件
        ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        System.out.println("獲得對(duì)象前");
        BeanLife blife = (BeanLife)ctx.getBean("beanLife");
        
        System.out.println("獲得對(duì)象后" + blife);
        
        ctx.close();//關(guān)閉容器
    }
}
生命周期1
生命周期2

四、裝配方式(bean注入到容器的方式)

1.基于xml的裝配方式

    <!-- 4.1.1 使用構(gòu)造方法注入方式裝配ComplexUser實(shí)例 user1-->
    <bean id="user1" class="assemble.ComplexUser">
        <constructor-arg index="0" value="chenheng1"/>
        <!--hobbyList-->
        <constructor-arg index="1">
            <list>
                <value>唱歌</value>
                <value>跳舞</value>
                <value>爬山</value>
            </list>
        </constructor-arg>
        <!--residenceMap  -->
        <constructor-arg index="2">
            <map>
                <entry key="dalian" value="大連"/>
                <entry key="beijing" value="北京"/>
                <entry key="shanghai" value="上海"/>
            </map>
        </constructor-arg>
        <!--aliasSet  -->
        <constructor-arg index="3">
            <set>
                <value>陳恒100</value>
                <value>陳恒101</value>
                <value>陳恒102</value>
            </set>
        </constructor-arg>
        <!--array  -->
        <constructor-arg index="4">
            <array>
                <value>aaaaa</value>
                <value>bbbbb</value>
            </array>
        </constructor-arg>
    </bean>
    
    
    <!--4.1.2 使用setter方法注入方式裝配 ComplexUser實(shí)例user2 -->
    <bean id="user2" class="assemble.ComplexUser">
        <property name="uname" value="chenheng2"/>
        <property name="hobbyList">
            <list>
                <value>看書</value>
                <value>學(xué)習(xí)Spring</value>
            </list>
        </property>
        <property name="residenceMap">
            <map>
                <entry key="shenzhen" value="深圳"/>
                <entry key="gaungzhou" value="廣州"/>
                <entry key="tianjin" value="天津"/>
            </map>
        </property>
        <property name="aliasSet">
            <set>
                <value>陳恒103</value>
                <value>陳恒104</value>
                <value>陳恒105</value>
            </set>
        </property>
        <property name="array">
            <array>
                <value>cccccc</value>
                <value>dddddd</value>
            </array>
        </property>
    </bean>
</beans>

ComplexUser.java

package assemble;
import java.util.List;
//4.1基于xml的裝配方式

import java.util.Map;
import java.util.Set;
public class ComplexUser {
    
    private String uname;
    private List<String> hobbyList;
    private Map<String,String> residenceMap;
    private Set<String> aliasSet;
    private String[] array;
    /*
     * 使用構(gòu)造方法注入州叠,需要提供帶參數(shù)的構(gòu)造方法
     */
    public ComplexUser(String uname, List<String> hobbyList, Map<String, String> residenceMap, Set<String> aliasSet,
            String[] array) {
        super();
        this.uname = uname;
        this.hobbyList = hobbyList;
        this.residenceMap = residenceMap;
        this.aliasSet = aliasSet;
        this.array = array;
    }
    
    
    /*
     * 使用屬性的setter方法注入棵红,提供默認(rèn)無(wú)參數(shù)的構(gòu)造方法,并未住入的屬性提供setter方法
     */
    public ComplexUser() {
        super();
    }
    public void setUname(String uname) {
        this.uname = uname;
    }
    public void setHobbyList(List<String> hobbyList) {
        this.hobbyList = hobbyList;
    }
    public void setResidenceMap(Map<String, String> residenceMap) {
        this.residenceMap = residenceMap;
    }
    public void setAliasSet(Set<String> aliasSet) {
        this.aliasSet = aliasSet;
    }
    public void setArray(String[] array) {
        this.array = array;
    }
    @Override
    public String toString() {
        return "uname=" + uname + ";hobbyList =" + hobbyList + ";residenceMap=" 
    + residenceMap +";aliasSet=" + aliasSet + ";array=" + array;
    }
}

TestAssemble.java 測(cè)試

package test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import assemble.ComplexUser;
public class TestAssemble {
    public static void main(String[] args) {
        @SuppressWarnings("resource")
        ApplicationContext appCon = new ClassPathXmlApplicationContext("applicationContext.xml");
        //測(cè)試構(gòu)造方法裝配
        ComplexUser u1 = (ComplexUser)appCon.getBean("user1");
        System.out.println(u1);
        
        //測(cè)試setter方法注入
        ComplexUser u2 = (ComplexUser)appCon.getBean("user2");
        System.out.println(u2);
    }
}

2.基于注解的裝配方式

@Component
該注解是一個(gè)泛化的概念咧栗,僅僅表示一個(gè)組件對(duì)象(Bean)逆甜,可以作用在任何層次上

AnnotationUser.java
package annotation;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component()//相當(dāng)于@Component("annotationUser")或者@Component(value = "annotationUser")虱肄,annotationUser為Bean的id,默認(rèn)為首字母小寫的類名
public class AnnotationUser {
    @Value("chenheng")
    private String uname;
    
    public String getUname() {
        return uname;
    }
    public void setUname(String uname) {
        this.uname = uname;
    }
    @Override
    public String toString() {
        return "uname=" + uname;
    }
}
在annotationContext里面告訴Spring在哪掃描
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">
    <!-- 使用context命名空間交煞,通過(guò)Spring掃描指定包下所有Bean的實(shí)現(xiàn)類浩峡,進(jìn)行注解解析 -->
    <context:component-scan base-package="annotation"/>
</beans>

在TestAnnotation里面測(cè)試(注意這里要導(dǎo)入spring-aop-5.0.5.RELEASE.jar的包)

package test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import annotation.AnnotationUser;
public class TestAnnotation {
    public static void main(String[] args) {
        ApplicationContext appCon = new ClassPathXmlApplicationContext("annotationContext.xml");
        AnnotationUser au = (AnnotationUser)appCon.getBean("annotationUser");
        System.out.println(au.getUname());
    }
}

為了層次化:@Repository標(biāo)注DAO層,@Service標(biāo)注業(yè)務(wù)邏輯層错敢、@Controller標(biāo)注控制層
(1)創(chuàng)建dao層

package annotation.dao;
import org.springframework.stereotype.Repository;
@Repository("testDao")

public class TestDaoImpl implements TestDao{
    @Override
    public void save() {
        System.out.println("testDao save");
    }
}

(2)創(chuàng)建service層

package annotation.service;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import annotation.dao.TestDao;
@Service("testService")//????@Service
public class TestSeviceImpl implements TestService{
    @Resource(name="testDao")
    
    private TestDao testDao;
    @Override
    public void save() {
        testDao.save();
        System.out.println("testService save");
    }
}

(3)創(chuàng)建Controller層

package annotation.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import annotation.service.TestService;
@Controller
public class TestController {
    @Autowired
    private TestService testService;
    public void save() {
        testService.save();
        System.out.println("testController save");
    }
}

配置注解:
之前已經(jīng)配置過(guò)了(通過(guò)Spring掃描指定包下所有Bean的實(shí)現(xiàn)類)

<context:component-scan base-package="annotation"/>

創(chuàng)建測(cè)試類:

TestMoreAnnotation
package test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import annotation.controller.TestController;
public class TestMoreAnnotation {
    public static void main(String[] args) {
        ApplicationContext appCon = new ClassPathXmlApplicationContext("annotationContext.xml");
        TestController testcon = (TestController)appCon.getBean("testController"); 
        testcon.save();
    }
}
屏幕快照 2019-03-14 下午11.32.25.png

屏幕快照 2019-03-14 下午11.43.16.png

【四】遇到問(wèn)題:

The import javax.servlet.annotation cannot be resolved

導(dǎo)入:servlet-api.jar包翰灾,然后在buildpath-addlibrary里面點(diǎn)擊runtimesever添加服務(wù)器

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市稚茅,隨后出現(xiàn)的幾起案子纸淮,更是在濱河造成了極大的恐慌,老刑警劉巖亚享,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件咽块,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡欺税,警方通過(guò)查閱死者的電腦和手機(jī)侈沪,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)晚凿,“玉大人亭罪,你說(shuō)我怎么就攤上這事〖呋啵” “怎么了应役?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)燥筷。 經(jīng)常有香客問(wèn)我箩祥,道長(zhǎng),這世上最難降的妖魔是什么肆氓? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任袍祖,我火速辦了婚禮,結(jié)果婚禮上谢揪,老公的妹妹穿的比我還像新娘蕉陋。我一直安慰自己,他們只是感情好键耕,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布寺滚。 她就那樣靜靜地躺著,像睡著了一般屈雄。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上官套,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天酒奶,我揣著相機(jī)與錄音蚁孔,去河邊找鬼。 笑死惋嚎,一個(gè)胖子當(dāng)著我的面吹牛杠氢,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播另伍,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼鼻百,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了摆尝?” 一聲冷哼從身側(cè)響起温艇,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎堕汞,沒(méi)想到半個(gè)月后勺爱,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡讯检,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年琐鲁,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片人灼。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡围段,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出投放,到底是詐尸還是另有隱情蒜撮,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布跪呈,位于F島的核電站段磨,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏耗绿。R本人自食惡果不足惜苹支,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望误阻。 院中可真熱鬧债蜜,春花似錦、人聲如沸究反。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)精耐。三九已至狼速,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間卦停,已是汗流浹背向胡。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工恼蓬, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人僵芹。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓处硬,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親拇派。 傳聞我的和親對(duì)象是個(gè)殘疾皇子荷辕,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345