Spring学习(二)Spring Bean装配
2020-12-13 02:09
标签:actor com eth ati file const load ESS cto Bean的作用域 ========================== bean有五种作用域 scope Bean的生命周期 ========================= -初始化 ·配置全局默认初始化、销毁方法 Ps:当三种方式同时实现优先级 当实现了初始化和销毁方法默认的的初始化和销毁自动失效 Aware接口 ================================== ·Spring中提供了ー些以 Awares结尾的接口,实现了 Aware接口的bean在被初始化之后,可以获取相应资源 Bean的自动装配(Autowiring) =================================== ·No:不做任何操作 Resources ================================== ·Resources ·ResourceLoader Spring学习(二)Spring Bean装配 标签:actor com eth ati file const load ESS cto 原文地址:https://www.cnblogs.com/ic710/p/11026794.html
singleton : 单例,指一个Bean容器中只存在一份
prototype : 每次请求(每次使用)创建新的实例,destroy方式不生效
request : 每次http请求创建一个实例且仅在当前request内有效
sesson : 同上,每次http请求创建,当前session内有效
global session : 基于portlet的web中有效(portlet定义了 global session),如果是在web中,同session
-定义
-实现org.springframework.beans.factory.InitializingBean接口,覆盖afterPropertiesSet方法
-配置init-methodbean id="demo" class="com.pojo.Demo" init-method="init">
bean>
public class Demo{
public void init(){}
}
-使用
-销毁
-实现org.springframework.beans.factory.DisposableBean接口,覆盖destroy方法
-配置init-methodbean id="demo" class="com.pojo.Demo" destroy-method="cleanup">
bean>
public class Demo{
public void cleanup(){}
}
beans xmlns="..." default-init-method="init" default-destroy-method="destroy">
beans>
·通过 Aware接口,可以对 spring相应资源进行操作(一定要慎重)
·为对 spring进行简单的扩展提供了方便的入口
·byname:根据属性名自动装配。此选项将检査容器并根据名字查找与属性完全一致的bean,并将其与属性自动装配
·bytype如果容器中存在一个与指定属性类型相司的bean,那么将与该属性自动装配;如果存在多个该类型bean,那么抛出异常,并指出不能使用 bytype方式进行自动装配;如果没有找到相匹配的bean,则什么事都不发生
·Constructor:与 bytype方式类似,不同之处在于它应用于构造器参数。如果容器中没有找到与构造器参数类型一致的bean那么抛出异常
-Urlresource:URL对应的资源,根据一个URL地址即可构建
-Classpath Resource:获取类路径下的资源文件
-Filesystemresource:获取文件系统里面的资源
-Servlet Contextresource: Servletcontext:封装的资源,用于访问 Servlet Context:环境下的资源
-Inputstreamresource:针对于输入流封装的资源
-Bytearrayresource:针对于字节数组封装的资源 public interface ResourceLoader{
Resource getResource(String location);
}
Resource template = ctx.getResource("src/resource/path/demo.text");
Resource template = ctx.getResource("classpath:src/resource/path/demo.text");
Resource template = ctx.getResource("file:/src/resource/path/demo.text");
下一篇:Python3版本号比较代码实现