Python 官方文档:入门教程 => 点击学习
目录bean的作用域具体实现代码分析前言:最近在进行springBean的作用域学习,并且学习了对应的例子。这里进行一下总结 一:Bean的作用域基础概念 如果想学习SpringBe
前言:最近在进行springBean的作用域学习,并且学习了对应的例子。这里进行一下总结 一:Bean的作用域基础概念
如果想学习SpringBean的生命周期,那么就必须要学习Bean的作用域。因为不同的作用域的bean的生命周期不同
1:singleton(唯一bean实例,由Spring容器管理其生命周期)
2:prototype(原型bean,创建后容器不管理其生命周期)
3:request(每次Http都产生新的bean,仅在http request内有效)
4:session(首次http请求创建一个实例,作用域是浏览器首次访问直至浏览器关闭)
5:global-session(全局 session 作用域,仅仅在基于 Portlet 的 WEB 应用中才有意义,Spring5 已经没有了。
后三种只有在web环境下才有效。
我针对对前两种作用域编写了一个对应的例子,这是一个普通的Maven项目,引进了spring的包。首先看一下项目结构
1.空的AService类
@Component
//@Scope("prototype")
public class AService {
}
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: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-4.0.xsd">
<!--开启注解的支持-->
<context:annotation-config/>
<!-- 自动扫描指定包及其子包下的所有Bean类 -->
<context:component-scan base-package="com.tfjy.test"/>
<!-- 将AService设置为原型bean-->
<!-- <bean id="AService" class="com.tfjy.test.AService" scope="prototype"></bean>-->
</beans>
Test测试类
public class Test {
//bean验证
@org.junit.Test
public void beanTest(){
ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
AService aServiceOne = context.getBean("AService",AService.class);
AService aServiceTwo = context.getBean("AService",AService.class);
System.out.println(aServiceOne);
System.out.println(aServiceTwo);
//通过equals方法判断两个对象是否相等
if(aServiceOne.equals(aServiceTwo)){
System.out.println("两次getBean方法,获得了同一个单例对象");
}else{
System.out.println("两次getBean方法,获得的不是同一个单例对象");
}
}
}
4.pom文件引入的依赖
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.15.RELEASE</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
上述代码中直接运行的话,是没有配置bean的作用域的。所以控制台会打印,两次getBean方法,获得了同一个单例对象
我们设置bean对象为prototype类型的方式也有两种。
1.注解方式。
在需要交由ioc容器管理的bean对象类上面添加@Scope(“prototype”)注解。
2.xml配置文件方式
<bean id="AService" class="com.tfjy.test.AService" scope="prototype"></bean>
这两种方式设置任意一种,spring加载bean的时候都会去读取配置,并将对应bean设置为prototype类型。
到此这篇关于浅谈springBean的作用域的文章就介绍到这了,更多相关springBean 作用域内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!
--结束END--
本文标题: 浅谈springBean的作用域
本文链接: https://lsjlt.com/news/194248.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0