创建Bean的实例有3种方式:

  • 构造器方式
  • 静态工厂方式
  • 实例工厂方式

构造器方式

构造器方式是最简单,也是最常用的。

写一个Bean,

  • 提供带参的构造器:使用带参的构造器创建bean的实例。
  • 或者提供无参的构造器+setter方法:先使用无参的构造器创建对象,再调用setter方法注入依赖。

使用注解或xml文件配置bean,注入所需依赖。

此种方式是使用构造方法直接创建Bean的实例,不由工厂类负责生产Bean的实例。


静态工厂方式

需要创建一个工厂类,在工厂类中写一个静态方法,返回该Bean的一个实例。

1、写一个Bean,提供带参的构造器

public class Student {
private int no;
private String name;
private float score; public Student(int no, String name, float score) {
this.no = no;
this.name = name;
this.score = score;
} //......
}

2、写一个工厂类,用静态方法生产该Bean的实例

public class StudentFactory {
public static Student createStudent(int no,String name,float score) {
return new Student(no, name, score);
}
}

因为在工厂中使用的是静态方法来生产该Bean的实例,所以称为静态工厂方式。

一个工厂可以有多个静态方法,生产多个Bean的多种实例。

3、在xml文件中配置工厂类

    <bean name="student" class="com.chy.utils.StudentFactory" factory-method="createStudent">
<constructor-arg index="0" value="1"/>
<constructor-arg index="1" value="chy"/>
<constructor-arg index="2" value="100"/>
</bean>

配置的是class="工厂类",因为是静态方法,直接通过工厂类调用,所以不需要工厂类的实例,也就不需要在xml文件中配置工厂类的实例。这个配置创建的是Student类的实例。

factory-method指定用哪个静态方法生产bean,<constructor-arg>给静态方法传入参数。

注解简化了配置,但注解只能进行简单的配置,复杂的配置还得在xml中配置。

通常注解、xml结合使用,简单的配置用注解,复杂的配置写在xml中。

4、使用

Student student = applicationContext.getBean("student", Student.class);

也可以使用空参构造器+setter方法注入,要麻烦些。只有1、2步不同:

1、提供空参构造器、setter方法

public class Student {
private int no;
private String name;
private float score; public void setNo(int no) {
this.no = no;
} public void setName(String name) {
this.name = name;
} public void setScore(float score) {
this.score = score;
} //......
}

2、先调用空参构造器创建实例,再调用setter方法赋值

public class StudentFactory {
public static Student createStudent(int no,String name,float score) {
Student student = new Student();
student.setNo(no);
student.setName(name);
student.setScore(score);
return student;
}
}

实例工厂方式

工厂中生产该Bean的方法不是静态的,在xml文件中需要同时配置工厂、该Bean。

1、写一个Bean,提供带参的构造器

2、写一个工厂类,用实例方法生产Bean(方法不用static修饰)

3、在xml文件中同时配置工厂类、该Bean

    <bean name="studentFactory" class="com.chy.utils.StudentFactory" />
<bean name="student" class="com.chy.bean.Student" factory-bean="studentFactory" factory-method="createStudent">
<constructor-arg index="0" value="1"/>
<constructor-arg index="1" value="chy"/>
<constructor-arg index="2" value="100"/>
</bean>

因为没有使用static修饰方法,不能通过工厂类的类名来调用,只能通过工厂类的实例来调用,所以要配置工厂类的实例。

4、使用

Student student = applicationContext.getBean("student", Student.class);

同样可以使用空参构造器+setter方法的方式。


上面静态工厂、实例工厂的xml配置,都是直接生产目标类的实例。

创建实例需要传入实参,把实参写死在xml中,这显然不可取。上面的xml配置不常用。

一般只管理工厂类的实例:

<bean name="studentFactory" class="com.chy.utils.StudentFactory"/>

scope默认就是单例,不必显式配置。

在程序中通过工厂创建目标对象,实参可变化:

StudentFactory studentFactory = applicationContext.getBean("studentFactory", StudentFactory.class);
Student student = studentFactory.createStudent(1, "chy", 100);

静态工厂甚至不必进行配置,直接通过类名调用静态方法创建目标对象:

Student student = StudentFactory.createStudent(1, "chy", 100);

Spring 实例化Bean的3种方式的更多相关文章

  1. Spring实例化Bean的三种方式及Bean的类型

    1.使用类构造器实例化  [默认的类构造器] <bean id=“orderService" class="cn.itcast.OrderServiceBean"/ ...

  2. Spring 实例化bean的三种方式

    第一种方法:直接配置Bean <bena id="所需要实例化的一个实例名称" class="包名.类名"/> 例如: 配置文件中的bean.XML ...

  3. Spring实例化bean的几种方式

    一,通过constructor实例化bean Spring可以实例化各种类型的类,不要求必须是JavaBean类型的类.在XML中配置类如下: <bean id="exampleBea ...

  4. Spring 实例化bean的三种方式:

    方法一:使用构造器实例化bean java代码: package com.model; public class User { private String username; public User ...

  5. spring实例化bean的三种方式

    公共使用的实体

  6. Spring学习之实例化bean的三种方式

    实例化bean的三种方式 构造器实例化bean Person.java public class Person { private String name; private Integer age; ...

  7. spring创建bean的三种方式

    spring创建bean的三种方式: 1通过构造方法创建bean(最常用) 1.1 spring默认会通过无参构造方法来创建bean,如果xml文件是这样配置,则实体类中必须要有无参构造方法,无参构造 ...

  8. spring 注入bean的两种方式

    我们都知道,使用spring框架时,不用再使用new来实例化对象了,直接可以通过spring容器来注入即可. 而注入bean有两种方式: 一种是通过XML来配置的,分别有属性注入.构造函数注入和工厂方 ...

  9. Spring获取bean的几种方式

    工作中需要对一个原本加载属性文件的工具类修改成对数据库的操作当然,ado层已经写好,但是需要从Spring中获取bean,然而,工具类并没有交给Spring来管理,所以需要通过方法获取所需要的bean ...

随机推荐

  1. 转:goproxy和go modules的初步使用

    转:https://blog.csdn.net/qq_42403866/article/details/93654421 go module 管理比较方便. 启用: export GO111MODUL ...

  2. java判断文件真实类型

    代码如下: import java.io.FileInputStream; import java.io.IOException; import java.util.HashMap; /** * &l ...

  3. 008-linux shell vim使用

    一.概述 vi: Visual Interface 可视化接口 vim: VI iMproved VI增强版 全屏编辑器,模式化编辑器 vim模式: 编辑模式(命令模式) 输入模式 末行模式 模式转换 ...

  4. Maven 常用工具类整理

    目录 1.Apache Commons 1.1.字符串处理 1.2.集合操作 1.3.IO操作 1.4.编解码操作 2.Google Guava 2.1.多场景使用 2.2.guava-retryin ...

  5. Ubuntu下卸载anaconda

    转载:https://blog.csdn.net/m0_37407756/article/details/77968724(一)删除整个anaconda目录: 由于Anaconda的安装文件都包含在一 ...

  6. 【视频开发】用GStreamer实现摄像头的采集和保存

    GStreamer是流媒体软件的开发框架.可以这样说,在该框架的支持下,你可以非常简单地为很多格式的流媒体写出自已需要的程序. 现在,GStreamer已经内置对MP3.Ogg/Vorbis.MPEG ...

  7. flutter本地环境的安装以及编辑器的配置

    由于本文图片比较多,所有都缩小了不少,点击图片就可以放大看到原始图片 使用镜像 cmd打开终端,贴上以下代码,以加入到环境变量中,如果添加失败,可以手动添加 export PUB_HOSTED_URL ...

  8. (转)Intellij Idea工具栏添加打开选中文件的资源管理器位置

    背景:在idea的view>toolbar上面添加工具按钮,能够简化操作,现在添加打开资源管理按钮,后续功能待研究 Intellij Idea工具栏添加打开选中文件的资源管理器位置 工具栏-右击 ...

  9. 【springboot】【idea】实体类免写get、set等方法,使用lombok依赖和插件的@Data类注解

    需求,一个实体类,规范写法一定要对应的get.set方法,有必要还要重写toString方法.虽然可以快速生成get.set等方法,但是如果要添加或减少成员属性时就得重新生成get.set等方法. 而 ...

  10. Mybaties的简单使用(全当做复习了)

    在使用mybaties的时候,最容易忘掉的是他的动态SQL,不过网上有关这方面的文章很多. 在动态SQl中最常见的几种SQL的语法就是: if choose (when, otherwise) tri ...