91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring?Bean實例化方式怎么實現

發布時間:2023-03-09 13:51:06 來源:億速云 閱讀:132 作者:iii 欄目:開發技術

這篇“Spring Bean實例化方式怎么實現”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Spring Bean實例化方式怎么實現”文章吧。

Spring為Bean提供了多種實例化方式,通常包括4種方式。(也就是說在Spring中為Bean對象的創建準備了多種方案,目的是:更加靈活)

第一種:通過構造方法實例化

第二種:通過簡單工廠模式實例化

第三種:通過factory-bean實例化(工廠方法模式)

第四種:通過FactoryBean接口實例化

1.通過構造方法實例化

我們之前一直使用的就是這種方式!默認情況下,會調用Bean的無參數構造方法,這里在復習一遍!

SpringBean類

package com.bjpowernode.spring.bean;
public class SpringBean {
    public SpringBean() {
        System.out.println("SpringBean的無參數構造方法執行了");
    }
}

spring.xml配置

第一種:在spring配置文件中直接配置類全路徑,Spring會自動調用該類的無參數構造方法來實例化Bean!

<?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">
    <!--Spring提供的實例化方式,第一種-->
    <bean id="sb" class="com.bjpowernode.spring.bean.SpringBean"/>
</beans>

BeanInstantiationTest測試類

package com.bjpowernode.spring.test;
import com.bjpowernode.spring.bean.SpringBean;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BeanInstantiationTest {
    @Test
    public void tesInstantiation1(){
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        SpringBean sb = applicationContext.getBean("sb", SpringBean.class);
        System.out.println(sb);
    }
}

執行結果:成功調用無參數構造方法實例化對象

Spring?Bean實例化方式怎么實現

2.通過簡單工廠模式實例化

簡單工廠模式又叫做靜態工廠方法模式,因為工廠類中有一個靜態方法!

第一步:定義一個Bean

package com.bjpowernode.spring.bean;
public class Vip {
    public Vip() {
        System.out.println("我是一個Vip");
    }
}

第二步:編寫簡單工廠模式當中的工廠類

package com.bjpowernode.spring.bean;
public class VipFactory {
    // 里面有一個靜態方法
    public static Vip get(){
        // 實際上對象的創建還是我們程序員自己完成的
        return new Vip();
    }
}

第三步:在Spring配置文件中指定創建該Bean的方法

第二種:通過簡單工廠模式。

需要在Spring配置文件中告訴Spring框架,調用哪個類的哪個方法獲取Bean?

①class屬性指定的是工廠類的全限定類名!

②factory-method屬性指定的是工廠類當中的靜態方法,也就是告訴Spring框架,調用這個方法可以獲取Bean!

<?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">
    <!--Spring提供的實例化方式,第二種-->
    <bean id="vipBean" class="com.bjpowernode.spring.bean.VipFactory" factory-method="get"/>
</beans>

第四步:編寫測試程序

package com.bjpowernode.spring.test;
import com.bjpowernode.spring.bean.SpringBean;
import com.bjpowernode.spring.bean.Vip;
import com.bjpowernode.spring.bean.VipFactory;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BeanInstantiationTest {
    @Test
    public void tesInstantiation2(){
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Object vipBean = applicationContext.getBean("vipBean", Vip.class);
        System.out.println(vipBean);
    }
}

執行結果:通過簡單工廠模式也能實例化對象

Spring?Bean實例化方式怎么實現

3.通過factory-bean實例化

本質上是:通過工廠方法模式進行實例化對象!

注:簡單工廠模式和工廠方法模式的區別

①簡單工廠模式是所有的產品對應一個工廠類,使用的是靜態方法!

②工廠方法模式是一個產品對應一個工廠類,使用的是實例方法!

第一步:定義一個Bean

package com.bjpowernode.spring.bean;
// 工廠方法模式當中的:具體產品角色
public class Gun {
    public Gun() {
        System.out.println("Gun的無參數構造方法執行");
    }
}

第二步:定義具體工廠類,工廠類中定義實例方法

package com.bjpowernode.spring.bean;
// 工廠方法模式當中:的具體工廠角色
public class GunFactory {
    // 實例方法
    public Gun get(){
        // 還是我們自己new的對象
        return new Gun();
    }
}

第三步:在Spring配置文件中指定factory-bean以及factory-method

第三種:通過工廠方法模式。

通過 factory-bean屬性 + factory-method屬性來共同完成。告訴Spring框架,調用哪個對象(因為是實例方法需要創建對象)的哪個方法來獲取Bean。

①factory-bean屬性用來告訴Spring調用那個對象!

②factory-method屬性用來告訴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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--Spring提供的實例化方式,第三種-->
    <bean id="gunBean" class="com.bjpowernode.spring.bean.GunFactory"/>
    <bean id="gun" factory-bean="gunBean" factory-method="get"/> 
</beans>

第四步:編寫測試程序

package com.bjpowernode.spring.test;
import com.bjpowernode.spring.bean.Gun;
import com.bjpowernode.spring.bean.SpringBean;
import com.bjpowernode.spring.bean.Vip;
import com.bjpowernode.spring.bean.VipFactory;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BeanInstantiationTest {
    @Test
    public void tesInstantiation3(){
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Gun gun = applicationContext.getBean("gun", Gun.class);
        System.out.println(gun);
    }
}

執行結果:通過工廠方法模式也能實例化對象

Spring?Bean實例化方式怎么實現

4.通過FactoryBean接口實例化

①在第三種方式中,factory-bean和factory-method都是我們自己定義的。

②在Spring中,當編寫的類直接實現FactoryBean接口之后,factory-bean和factory-method就不需要指定了!factory-bean會自動指向實現FactoryBean接口的類,factory-method會自動指向getObject()方法!

第一步:定義一個Bean

package com.bjpowernode.spring.bean;
public class Person {
    public Person() {
        System.out.println("Person的無參數構造方法執行了");
    }
}

第二步:編寫一個類實現FactoryBean接口,重寫里面的方法

PersonFactory也是一個Bean,只不過這個Bean比較特殊,叫做工廠Bean。通過工廠Bean這個特殊的Bean可以獲取一個普通的Bean!

package com.bjpowernode.spring.bean;
import org.springframework.beans.factory.FactoryBean;
public class PersonFactory implements FactoryBean<Person> {
    @Override
    public Person getObject() throws Exception {
        // 對象的創建也是自己new的
        return new Person();
    }
    @Override
    public Class<?> getObjectType() {
        return null;
    }
    @Override
    public boolean isSingleton() {
        // 這個方法是默認存在的,true表示單例,false表示原型
        return true;
    }
}

第三步:在Spring配置文件中配置FactoryBean

第四種:通過FactoryBean接口來實現,這種方式實際上就是第三種方式的簡化!

①由于你編寫的類實現了FactoryBean接口,所以這個類是一個特殊的類,不需要你再手動指定:factory-bean、factory-method。 ②通過一個特殊的Bean:工廠Bean,來返回一個普通的Bean Person對象。即通過FactoryBean這個工廠Bean主要是想對普通Bean進行加工處理!

<?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">
    <!--Spring提供的實例化方式,第四種-->
    <bean id="person" class="com.bjpowernode.spring.bean.PersonFactory" />
</beans>

第四步:編寫測試程序

package com.bjpowernode.spring.test;
import com.bjpowernode.spring.bean.*;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BeanInstantiationTest {
    @Test
    public void tesInstantiation4(){
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Person person = applicationContext.getBean("person", Person.class);
        System.out.println(person);
    }
}

執行結果:通過FactoryBean接口實例化

Spring?Bean實例化方式怎么實現

注:FactoryBean在Spring中是一個接口,被稱為“工廠Bean”。“工廠Bean”是一種特殊的Bean,所有的“工廠Bean”都是用來協助Spring框架來創建其他Bean對象的!

5.BeanFactory和FactoryBean的區別-面試題

(1)BeanFactory(是一個工廠)

BeanFactory是Spring IoC容器的頂級對象,BeanFactory被翻譯為“Bean工廠”,在Spring的IoC容器中,“Bean工廠”負責創建Bean對象!

(2)FactoryBean(是一個Bean)

FactoryBean是一個Bean,是一個能夠輔助Spring實例化其它Bean對象的一個Bean!

在Spring中,Bean可以分為兩類:

  • 第一類:普通Bean

  • 第二類:工廠Bean(工廠Bean也是一種Bean,只不過這種Bean比較特殊,它可以輔助Spring實例化其它Bean對象)

6.使用FactoryBean注入自定義Date

①前面我們說過,java.util.Date在Spring中被當做簡單類型,簡單類型在注入的時候可以直接使用value屬性或value標簽來完成。

②但是之前我們已經測試過了,對于Date類型來說,采用value屬性或value標簽賦值的時候,對日期字符串的格式要求非常嚴格,必須是這種格式的:Mon Oct 10 14:30:26 CST 2022,其他格式是不會被識別的!

③當然我們也可以當成非簡單類型處理,使用ref屬性來處理,但是卻有一個弊端,獲取的都是當前的時間,并不能自己指定時間!

注:下面我們就使用FactoryBean來完成這個騷操作!

Student類

package com.bjpowernode.spring.bean;
import java.util.Date;
public class Student {
    // 每個學生都有出生日期
    private Date birth;
    @Override
    public String toString() {
        return "Student{" +
                "birth=" + birth +
                '}';
    }
    public void setBirth(Date birth) {
        this.birth = birth;
    }
}

編寫DateFactory實現FactoryBean接口

package com.bjpowernode.spring.bean;
import org.springframework.beans.factory.FactoryBean;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFactory implements FactoryBean<Date> {
    // 定義一個日期屬性,用來處理傳過來的日期字符串
    private String date;
    // 通過構造方法給日期字符串屬性賦值
    public DateFactory(String date) {
        this.date = date;
    }
    @Override
    public Date getObject() throws Exception {
        // 處理
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        return sdf.parse(this.date);
    }
    @Override
    public Class<?> getObjectType() {
        return null;
    }
}

編寫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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <!--通過這個類的構造方法,把字符串轉換成Date-->
    <bean id="date" class="com.bjpowernode.spring.bean.DateFactory">
        <constructor-arg name="date" value="1999-01-14"/>
    </bean>
    <!--把上面的Date通過上面的類,使用ref屬性引進來-->
    <bean id="studentBean" class="com.bjpowernode.spring.bean.Student">
        <property name="birth" ref="date"/>
    </bean>
</beans>

編寫測試程序

package com.bjpowernode.spring.test;
import com.bjpowernode.spring.bean.*;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BeanInstantiationTest {
    @Test
    public void testDate(){
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        Student studentBean = applicationContext.getBean("studentBean", Student.class);
        System.out.println(studentBean);
    }
}

執行結果

Spring?Bean實例化方式怎么實現

以上就是關于“Spring Bean實例化方式怎么實現”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

云阳县| 贵港市| 景东| 革吉县| 汉源县| 阿拉善盟| 广宁县| 安丘市| 铜川市| 五常市| 洛浦县| 望城县| 喀喇沁旗| 泸州市| 澳门| 玛多县| 和林格尔县| 洛扎县| 育儿| 漠河县| 信丰县| 信宜市| 茂名市| 乐业县| 南投县| 肃北| 呼伦贝尔市| 万盛区| 中山市| 桦川县| 米脂县| 工布江达县| 云龙县| 灵川县| 盖州市| 沧源| 吉水县| 措勤县| 永新县| 泽库县| 孙吴县|