框架学习笔记#Spring Bean(配置实现)

Bean配置项

Id:Bean的唯一标识
Class:具体实例化的类
Scope:作用范围、作用域
Constructor arguments:构造器参数
Properties:构造器属性
Autowiring mode:自动装配模式
lazy-initialization mode:懒加载模式
Initialization/destruction method:初始化/销毁的方法

以上配置项构成了Ioc容器中对bean的配置,其中class为必须的。

Bean的作用域

singleton:单例,指一个Bean容器只存在一份,为默认模式。(每次的context可以视为一个容器)
prototype:每次请求(每次使用)创建新的实例,destory方式不生效
request:每次http请求创建一个实例,仅在当前request内有效。
global session:基于portlet的web有效(portlet定义了global session),如果是在web中,同session。

Bean的生命周期

初始化:

  • 实现org.springframework.beans.factory.InitializingBean接口,覆盖afterPropertiesSet方法
框架学习笔记#Spring Bean(配置实现)_第1张图片
覆盖afterPropertiesSet方法.png

  • 配置init-method
框架学习笔记#Spring Bean(配置实现)_第2张图片
配置init-method.png

销毁

  • 实现org.springframework.beans.factory.DisposableBean接口,覆盖destory方法
框架学习笔记#Spring Bean(配置实现)_第3张图片
覆盖destory方法.png
  • 配置destory-method
框架学习笔记#Spring Bean(配置实现)_第4张图片
配置destory-method.png

全局的配置方式



...

全局配置会被上述的两种方式覆盖,所使用的bean中需要包含所定义的两个default函数,否则该方法无效但是却不会报错。

Bean的自动装配

Autowiring

No:不做任何操作
byname:根据属性名自动装配(id)。该选项将检查容器并根据名字查找属性完全一致的bean,将其与属性自动装配。
byType:根据类型自动匹配,该选项将检查容器并根据类型查找属性完全一致的bean,将其与属性自动装配。若匹配到多个,就报错。
Constructor:与byType类似,但是用于构造器参数。




    
        
    
    
    

使用了autowire后 可以不必再写property。spring会自动在容器中寻找名称与bean中私有属性名相同的bean进行匹配。

    private AutoWiringDAO autoWiringDAO;

    public void setAutoWiringDAO(AutoWiringDAO autoWiringDAO) {
        this.autoWiringDAO = autoWiringDAO;
    }

若是使用default-autowire="byName" id与参数名称不一致也是可以的。

aware接口

Spring中提供了一些以aware结尾的接口,实现了aware接口的bean在初始化之后,可以获得相应的资源。

常见:BeanNameAware、ApplicationContextAware

public class AwareExample implements BeanNameAware,ApplicationContextAware {

    private String beanName;


    @Override
    public void setBeanName(String s) {
        this.beanName = s;
        System.out.println("BeanName:" + s);
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        System.out.println("AwareExample--- : " + applicationContext.getBean(beanName));
    }
}

Resources&ResourceLoader

针对资源文件的统一接口

Resources

UrlResource:url对应资源,根据一个url地址即可创建。
ClassPathResource:获取类路径下的资源文件。
FileSystemResource:获取文件系统里面的资源。
ServletContextResource:ServletContext封装资源,用于访问ServletContext环境下的资源。
InputStreamResource:针对输入流封装的资源。
ByteArrayResource:针对于字节数组封装的资源。

ResourceLoader:对Resource进行加载的类

public class SpringResource implements ApplicationContextAware{

    private ApplicationContext applicationContext;

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        this.applicationContext = applicationContext;

    }

    public void resource() throws IOException {
        Resource resource =  applicationContext.getResource("classpath:file.txt");
        System.out.println(resource.getFilename());
        System.out.println(resource.contentLength());

    }
}

applicationContext.getResource("classpath:file.txt");
classpath为项目配置的路径。此处可写为url、file等。

你可能感兴趣的:(框架学习笔记#Spring Bean(配置实现))