• Spring系列文章:Bean的获取⽅式


    一、简介

    Spring为Bean提供了多种实例化⽅式,通常包括4种⽅式。(也就是说在Spring中为Bean对象的创建准 备了多种⽅案,⽬的是:更加灵活)

    第⼀种:通过构造⽅法实例化

    第⼆种:通过简单⼯⼚模式实例化

    第三种:通过factory-bean实例化

    第四种:通过FactoryBean接⼝实例化

    二、四种Bean的获取⽅式

    1、通过构造⽅法获取(实例化)

    默认情况下,会调⽤Bean的⽆参数构造⽅法

    spring.xml中配置bean的路径

    1. "1.0" encoding="UTF-8"?>
    2. "http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans
    5. http://www.springframework.org/schema/beans/spring-beans.xsd">
    6. "userBean" class="com.demo.bean.User"/>
    1. public class User {
    2. public User(){
    3. System.out.println("无参构造被调用");
    4. }
    5. }

     

    测试

    1. @Test
    2. public void testConstructor() {
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    4. User user = applicationContext.getBean("userBean", User.class);
    5. System.out.println(user);
    6. }

    2、通过简单⼯⼚模式获取(实例化)

    第一步:定义⼀个Bean

    1. public class User {
    2. }

    第二步:编写简单⼯⼚模式当中的⼯⼚类

    1. public class UserFactory {
    2. public static User get(){
    3. return new User();
    4. }
    5. }

    第三步:在Spring配置⽂件中指定创建该Bean的⽅法(使⽤factory-method属性指定)

    1. "1.0" encoding="UTF-8"?>
    2. "http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans
    5. http://www.springframework.org/schema/beans/spring-beans.xsd">
    6. "userBean" class="com.demo.entity.UserFactory" factory-method="get"/>

    第四步:编写测试程序

    1. @Test
    2. public void testSimpleFactory(){
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    4. User user = applicationContext.getBean("userBean", User.class);
    5. System.out.println(user);
    6. }

    3、通过factory-bean获取(实例化)

    这种⽅式本质上是:通过⼯⼚⽅法模式进⾏实例化。

    第⼀步:定义⼀个Bean

    1. public class Order{
    2. }

     第⼆步:定义具体⼯⼚类,⼯⼚类中定义实例⽅法

    1. public class OrderFactory {
    2. public Order get(){
    3. return new Order();
    4. }
    5. }

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

    1. "orderFactory" class="com.demo.bean.OrderFactory"/>
    2. "orderBean" factory-bean="orderFactory" factory-method="get"/>

    第四步:编写测试程序

    1. @Test
    2. public void testSimpleFactory(){
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    4. Order orderBean = applicationContext.getBean("orderBean", Order.class);
    5. System.out.println(orderBean);
    6. }

    4、通过FactoryBean接⼝实例化

    以上的第三种⽅式中,factory-bean是我们⾃定义的,factory-method也是我们⾃⼰定义的。

    在Spring中,当你编写的类直接实现FactoryBean接⼝之后,factory-bean不需要指定了,factory-method也不需要指定了。

    factory-bean会⾃动指向实现FactoryBean接⼝的类,factory-method会⾃动指向getObject()⽅法。

    第⼀步:定义⼀个Bean

    1. public class Person {
    2. }

    第⼆步:编写⼀个类实现FactoryBean接⼝

    1. //PersonFactoryBean 也是一个bean 只不过这个bean比较特殊,叫做工厂bean,通过工厂bean这个特殊的bean可以获取一个普通的bean
    2. public class PersonFactoryBean implements FactoryBean {
    3. @Override
    4. public Person getObject() throws Exception {
    5. //最终这个bean还是程序员自己new
    6. return new Person();
    7. }
    8. @Override
    9. public Class getObjectType() {
    10. return null;
    11. }
    12. //这个方法在接口中有默认的实现,默认返回true 表示单例的,若多例直接将这个方法修改reture false即可
    13. @Override
    14. public boolean isSingleton() {
    15. // true表示单例
    16. // false表示原型
    17. return true;
    18. }
    19. }

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

    "personBean" class="com.demo.bean.PersonFactoryBean"/>

     第四步:测试

    1. @Test
    2. public void testSimpleFactory(){
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    4. Person personBean = applicationContext.getBean("personBean", Person.class);
    5. System.out.println(personBean);
    6. Person personBean2 = applicationContext.getBean("personBean", Person.class);
    7. System.out.println(personBean2);
    8. }

    FactoryBean在Spring中是⼀个接⼝。被称为“⼯⼚Bean”。“⼯⼚Bean”是⼀种特殊的Bean。所有 的“⼯⼚Bean”都是⽤来协助Spring框架来创建其他Bean对象的。

    三、BeanFactory和FactoryBean的区别

    Spring IoC容器的顶级对象,BeanFactory被翻译为“Bean⼯⼚”,在Spring的IoC容器中,“Bean⼯ ⼚”负责创建Bean对象。

    这是 IOC 容器的基本实现,是 Spring 内部使用的接口。面向 Spring 本身,不提供给开发人员使用

    FactoryBean:它是⼀个Bean,是⼀个能够辅助Spring实例化其它Bean对象的⼀个Bean。

    在Spring中,Bean可以分为两类:

    第⼀类:普通Bean

    第⼆类:⼯⼚Bean(记住:⼯⼚Bean也是⼀种Bean,只不过这种Bean⽐较特殊,它可以辅助 Spring实例化其它Bean对象。)

    四、注⼊⾃定义Date

    前面文章有介绍到java.util.Date在Spring中被当做简单类型,简单类型在注⼊的时候可以直接使⽤value属 性或value标签来完成。但我们之前已经测试过了,对于Date类型来说,采⽤value属性或value标签赋值 的时候,对⽇期字符串的格式要求⾮常严格,必须是这种格式的:Mon Oct 10 14:30:26 CST 2022。其 他格式是不会被识别的。如以下代码:

    1. public class Student {
    2. private Date birth;
    3. public void setBirth(Date birth) {
    4. this.birth = birth;
    5. }
    6. @Override
    7. public String toString() {
    8. return "Student{" +
    9. "birth=" + birth +
    10. '}';
    11. }
    12. }
    1. <bean id="studentBean" class="com.demo.bean.Student">
    2. <property name="birth" value="Mon Oct 10 14:30:26 CST 2002"/>
    3. bean>
    1. @Test
    2. public void testDate(){
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    4. Student studentBean = applicationContext.getBean("studentBean", Student.class);
    5. System.out.println(studentBean);
    6. }

    结果

    如果把⽇期格式修改⼀下: 

    1. "studentBean" class="com.demo.bean.Student">
    2. "birth" value="2002-10-10"/>

    执行就报错

    这种情况下,我们就可以使⽤FactoryBean来完成这个操作。 编写DateFactoryBean实现FactoryBean接⼝:

    1. public class DateFactoryBean implements FactoryBean {
    2. // 定义属性接收⽇期字符串
    3. private String date;
    4. // 通过构造⽅法给⽇期字符串属性赋值
    5. public DateFactoryBean(String date) {
    6. this.date = date;
    7. }
    8. @Override
    9. public Date getObject() throws Exception {
    10. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    11. return sdf.parse(this.date);
    12. }
    13. @Override
    14. public Class getObjectType() {
    15. return null;
    16. }
    17. }

    编写spring配置⽂件:

    1. "dateBean" class="com.demo.bean.DateFactoryBean">
    2. "date" value="1999-10-11"/>
    3. "studentBean" class="com.demo.bean.Student">
    4. "birth" ref="dateBean"/>

  • 相关阅读:
    IDEA 在远程 Tomcat 上运行项目(亲身避坑版)
    Kakao Brain 的开源 ViT、ALIGN 和 COYO 文字-图片数据集
    《Nature》论文插图的Matlab复刻第4期—单组多色柱状图(Part2-82)
    【超好懂的比赛题解】HNCPC Multi-university Training Round2 比赛题解(AHBGIK)
    监测难?误差大?北斗突破铁路监测预警难题,24小时全方位守护
    mac 本地运行 http-proxy-middleware ,请求超时
    数组:2.近序数组
    LVS-DR模式
    推荐一款制作精良、功能强大、毫秒级精度的定时任务执行软件
    Mycat2 分布式数据库中间件
  • 原文地址:https://blog.csdn.net/qq_34491508/article/details/132817466