浅谈spring容器中bean的初始化

作者:jingxian 时间:2023-11-25 21:25:40 

当我们在spring容器中添加一个bean时,如果没有指明它的scope属性,则默认是singleton,也就是单例的。

例如先声明一个bean:


public class People {
private String name;
private String sex;
public String getName() {
 return name;
}
public void setName(String name) {
 this.name = name;
}
public String getSex() {
 return sex;
}
public void setSex(String sex) {
 this.sex = sex;
}

}

在applicationContext.xml文件中配置


<?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:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd">

<bean id="people" class="People" ></bean>

</beans>

然后通过spring容器来获取它:


import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class SpringTest {

public static void main(String[] args) {
 ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
 People p1=(People) context.getBean("people");
 People p2=(People) context.getBean("people");
 System.out.println(p1);
 System.out.println(p2);
}

}

运行之后可以看出p1和p2输入的内容是一样的,说明spring中的bean是单例的。

如果不想要单例的bean,可以将scope的属性改为prototype


<bean id="people" class="People" scope="prototype" ></bean>

这样通过spring容器获取的bean就不是单例的了。

spring容器默认情况下在启动之后就自动为所有bean创建对象,若想要在我们获取bean时才创建的话,可以使用lazy-init属性

该属性有三个值defalut,true,false。默认是default,该值和false一样,都是spring容器启动时就创建bean对象,当指定为true时,

在我们获取bean时才创建对象。

标签:spring,初始化,bean
0
投稿

猜你喜欢

  • spring Bean创建的完整过程记录

    2022-04-14 03:57:51
  • Java设计模式之Builder建造者模式

    2021-12-16 07:21:53
  • Spring boot搭建邮件服务的完整步骤

    2023-07-20 06:58:34
  • Lucene 索引删除策略源码解析

    2023-11-21 00:11:01
  • 深入理解JAVA基础类库中对象Object类

    2023-07-26 12:24:10
  • SpringBoot自定义MessageConverter与内容协商管理器contentNegotiationManager详解

    2023-11-28 11:35:54
  • C#设计模式实现之生成器模式和责任链模式

    2023-12-19 21:57:51
  • Android studio报: java.lang.ExceptionInInitializerError 错误

    2022-08-14 14:21:30
  • 利用stream实现一个简单的http下载器

    2023-12-14 09:36:36
  • 人脸认证源码faceIdentify详解

    2023-05-19 09:57:25
  • 解析Android获取系统cpu信息,内存,版本,电量等信息的方法详解

    2023-11-20 10:50:15
  • C# 如何使用ajax请求

    2023-07-21 07:44:40
  • java实现单人版五子棋游戏

    2021-09-03 03:24:20
  • Java如何在 Word 中设置上、下标

    2023-10-15 21:04:10
  • Android12 蓝牙适配的实现步骤

    2021-08-25 08:36:34
  • android客户端从服务器端获取json数据并解析的实现代码

    2023-09-30 07:52:20
  • IntelliJ IDEA(2020.2)的下载、安装步骤详细教程

    2023-11-25 07:10:16
  • C字符串操作函数的实现详细解析

    2022-10-26 16:28:37
  • C#中Razor模板引擎简单使用

    2022-01-21 10:04:13
  • SpringBoot整合ActiveMQ的详细步骤

    2023-08-25 07:03:44
  • asp之家 软件编程 m.aspxhome.com