Bean容器初始化

  • 基础

    • org.springframework.beans
    • org.springframework.context
    • BeanFactory提供配置结构和基本功能,加载并初始化Bean
    • ApplicationContext保存了Bean对象,并且在Spring进行使用
  • ApplicationContext范围
    • 加载本地文件

      FileSystemXmlApplication context = new FileSystemXmlApplicationContext("F://test//context.xml");
    • 加载ClassPath文件

      ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("classpath*/resources/context.xml");
    • web应用配置文件
  • Spring注入方式
    • 定义:Spring注入是指启动Spring容器启动并加载Bean的过程中,完成对变量的赋值行为
    • 注入方式:
      • 设值注入:是将变量以Set属性的方式注入到Bean中,使用设置注入,在Bean中一定要有变量的Set方法,配置中的<property>标签name的值一定要和属性名称一致!!!

        <?xml version="1.0" encoding="UTF-8"?>
        <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd" > <bean id="InjectionServiceImpl" class="com.jing.spring.bean.InjectionServiceImpl">
        <property name="injectionDao" ref="injectionDao"></property>
        </bean>
        <bean id="injectionDao" class="com.jing.spring.bean.InjectionDaoImpl"></bean><!--??????不懂 程序中是引用接口 为什么却要把实现类注入?-->
        </beans>
        private InjectionDao injectionDao;
        
            public void setInjectionDao(InjectionDao injectionDao) {
        this.injectionDao = injectionDao;
        } public void save(String arg) {
        System.out.print("InjectionServiceImpl中的arg==="+arg+"\n");
        //逻辑处理
        arg=arg+":"+this.hashCode();
        injectionDao.save(arg);
        }
      • 构造注入:是将变量作为Bean构造器的参数传入,在Bean中一个要有一个以变量作为参数的构造函数,配置中的<constructor-arg>标签name的值一定要和有参构造方法参数名称一致!!!
        <?xml version="1.0" encoding="UTF-8"?>
        <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd" > <bean id="InjectionServiceImpl" class="com.jing.spring.bean.InjectionServiceImpl">
        <constructor-arg name="injectionDao" ref="injectionDao"></constructor-arg>
        </bean> <bean id="injectionDao" class="com.jing.spring.bean.InjectionDaoImpl"></bean>
        </beans>
        private InjectionDao injectionDaoss;
        
            InjectionServiceImpl(InjectionDao injectionDao){
        this.injectionDaoss=injectionDao;
        }
        public void save(String arg) {
        System.out.print("InjectionServiceImpl中的arg==="+arg+"\n");
        //逻辑处理
        arg=arg+":"+this.hashCode();
        injectionDaoss.save(arg);
        }

Bean的配置项

  • Id
  • Class
  • Scope
  • Contructor arguments
  • Properties
  • Autowiring mode
  • lazy_initialization mode
  • Initialization/destruction mothod

Bean的作用域

  • singleton:单例。一个Bean容器中只存在一个Bean对象。
  • prototype:每次请求创建实例都会产生一个新的实例,destroy不生效。
  • request:每次请求创建一个新的实例且在当前request内有效。
  • session:同上,每次http请求创建一个新的实例,且在当前session有效。
  • global session:基于portlet的web中有效(portlet定义了 global session)。如果是在web中,同session。使用在多个系统之间,一个session控制不了多个系统。

Bean的生命周期

  • 定义:XML文件中<bean>的定义
  • 初始化:获取一个实例的时候
  • 使用:使用
  • 销毁:销毁
     
  • 初始化/销毁方法:这两个方法是为了 在初始化/销毁Bean容器的时候执行一些额外的方法
    • 针对Bean实例的销毁,只有在Bean是单例singleton模式的前提下,Bean才会随着Bean容器的销毁而销毁。在原型prototype的模式下,Bean实例在创建后,就会交由用户进行管理,所以此时Bean实例的销毁不是由Bean容器决定。举例:在原型模式中,根据电影票类初始化两个实例,也就是两张电影票,这个时候,不能因为一张电影票的作废,另一张电影票也随之作废。电影票的管理应该交由用户来管理。
    • 方式一:XML中每一个Bean实例声明一个初始化方法/销毁方法
      <?xml version="1.0" encoding="UTF-8"?>
      <beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans.xsd" > <bean id="springLifeDate" class="com.jing.spring.lifedate.SpringLifeDate" init-method="start" destroy-method="end"></bean> </beans>
      package com.jing.spring.lifedate;
      
      public class SpringLifeDate1 {
      
          public void start(){
      System.out.println("SpringLifeDate开始执行。。。。");
      }
      public void excecute(){
      System.out.println("SpringLifeDate执行中。。。。");
      }
      public void end(){
      System.out.println("SpringLifeDate执行结束。。。。");
      }
      }
       

      PS:这种方法针对每个Bean设置的初始化/销毁时执行的方法。在Bean容器初始化时主动执行init-method设置的类中的方法,Bean容器销毁后执行destroy-method设置的方法。如果在XML中进行方法设置,Bean类中创造方法,会报错。

    • 方式二:在Bean的类中实现接口,实现初始化方法/销毁方法
      package com.jing.spring.lifedate;
      
      import org.springframework.beans.factory.DisposableBean;
      import org.springframework.beans.factory.InitializingBean; public class SpringLifeDate2 implements InitializingBean, DisposableBean { public void afterPropertiesSet() throws Exception {
      System.out.println("SpringLifeDate开始执行。。。。");
      }
      public void excecute(){
      System.out.println("SpringLifeDate执行中。。。。");
      }
      public void destroy() throws Exception {
      System.out.println("SpringLifeDate执行结束。。。。");
      }
      }

      PS:这种方法是Bean中实现接口实现Bean初始化/销毁时执行的方法。Bean初始化后执行的方法需要实现InitializingBean接口重写afterPropertiesSet方法,Bean销毁后执行的方法需要实现DisposableBean接口重写destroy方法。

    • 方式三:在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"
      xsi:schemaLocation="http://www.springframework.org/schema/beans
      http://www.springframework.org/schema/beans/spring-beans.xsd"
      default-init-method="defaultInit" default-destroy-method="defaultDestroy" >
      </beans>
      package com.jing.spring.lifedate;
      
      public class SpringLifeDate3 {
      public void defaultInit() throws Exception {
      System.out.println("SpringLifeDate3开始执行。。。。");
      }
      public void excecute(){
      System.out.println("SpringLifeDate执行中。。。。");
      }
      public void defaultDestroy() throws Exception {
      System.out.println("SpringLifeDate3执行结束。。。。");
      }
      }

      PS:这种方式生命Bean的初始化/销毁方法,在类中没有相对应得方法,也不会报错。

    • 执行顺序
      • 在三种方式同时存在的情况下:只会执行方式一(每一个Bean实例声明)和方式二(实现类方式)中定义的初始化/销毁方法,执行顺序为方式二(实现类方式)>方式一(每一个Bean实例声明)
      • 在方式三(全局配置)和其他任一方式同时存在,方式三(全局配置)都不会执行,只会执行另一种方式中定义的初始化/销毁方法。
  • Next

Spring 学习——Bean容器的更多相关文章

  1. 【转】Spring学习---Bean配置的三种方式(XML、注解、Java类)介绍与对比

    [原文]https://www.toutiao.com/i6594205115605844493/ Spring学习Bean配置的三种方式(XML.注解.Java类)介绍与对比 本文将详细介绍Spri ...

  2. Spring学习-Bean的基本概念知识

    4月份开始复习一遍spring相关知识.让自己巩固一下spring大法的深奥益处,所以就看了大佬的博客,转载留下来日后继续研读.认为重点的标记为红色 转载自:http://www.cnblogs.co ...

  3. Spring学习-- IOC 容器中 bean 的生命周期

    Spring IOC 容器可以管理 bean 的生命周期 , Spring 允许在 bean 声明周期的特定点执行定制的任务. Spring IOC 容器对 bean 的生命周期进行管理的过程: 通过 ...

  4. 【转】Spring学习---SpringIOC容器的初始化过程

    [原文]https://www.toutiao.com/i6594400249429623304/ SpringIOC容器的初始化过程 简单来说,IoC容器的初始化是由refresh()方法来启动的, ...

  5. Spring学习-- Bean 的作用域

    Bean 的作用域: 在 Spring 中 , 可以在 <bean> 元素的 scope 属性里设置 bean 的作用域. 默认情况下 , Spring 只为每个在 IOC 容器里声明的 ...

  6. Spring学习--Bean 之间的关系

    Bean 之间的关系:继承.依赖. Bean 继承: Spring 允许继承 bean 的配置 , 被继承的 bean 称为父 bean , 继承这个父 bean 的 bean 称为子 bean. 子 ...

  7. spring的bean容器加载

    1.在单独使用的时候可以通过ClassPathXmlApplicationContext(“配置文件.xml”);来启动容器. 2.在MVC下是通过启动servlet容器,初始化DispatcherS ...

  8. 黑马Spring学习 bean

  9. spring学习(二)---依赖注入

    spring第二个特性是依赖注入. 学习依赖注入,首先应该明白两个问题:1,谁依赖谁:2,谁注入,注入什么? 首先还是看代码: 还是这个bean: package testSpring.busines ...

随机推荐

  1. markdown入门杂记

    系统环境:win10 软件:sublime Text 3 安装插件: markdown editing.markdownlivepreview 修改prference-markdownliveprev ...

  2. C Alyona and Spreadsheet Codeforces Round #401(Div. 2)(思维)

    Alyona and Spreadsheet 这就是一道思维的题,谈不上算法什么的,但我当时就是不会,直到别人告诉了我,我才懂了的.唉 为什么总是这么弱呢? [题目链接]Alyona and Spre ...

  3. hive javaapi 002

    默认开启10000端口开启前,编辑hive-site.xml设置impersonation,防止hdfs权限问题,这样hive server会以提交用户的身份去执行语句,如果设置为false,则会以起 ...

  4. Sitecore系统教程之模板理解

    Sitecore中的所有内容都是一个项目.模板也是如此.Sitecore中的模板是一个项目,它定义了其他项目的结构和行为.Sitecore中的每个项目都是某个模板的实例.模板还可以定义它分解成的部分和 ...

  5. Differencia (归并树)

    归并树,与我们原学过的归并排序是一样的原理,但是在那个的基础上进行扩展应用.首先每个节点储存了它每个节点所代表的点的有序序列,还有就是每个点里面包含的所有的b[i]在左右子树的排名辅助更新数据,还有一 ...

  6. [protocol]GO enrichment analysis

    [protocol]GO enrichment analysis     背景: 什么是富集分析,自己可以百度.我到目前也没发现一个比较通俗易懂的介绍.直接理解为一种统计学方法就可以了. 用于查看显著 ...

  7. Unicode字符需要几个字节来存储?

    0)学习笔记: 我们常说的这句话“Unicode字符是2个字节”这句话有毛病 Unicode目前规划的总空间有17个平面, 0x0000---0x10FFFF,每个平面有 65536 个码点. Uni ...

  8. linux常用命令:cat 命令

    cat命令的用途是连接文件或标准输入并打印.这个命令常用来显示文件内容,或者将几个文件连接起来显示,或者从标准输入读取内容并显示,它常与重定向符号配合使用. 1.命令格式: cat [选项] [文件] ...

  9. STM32 一个定时器产生4路 独立调频率,占中比可调,脉冲个数可以统计。

    实现这个功能,基本原理是利用STM32 的输出比较功能. 1.其它设置就是普通定时器的设置这里开启,四个输出比较中断,和一个更新中断, 更新中断这里不需要开也可以达到目的,我这里开启是做其它的用处的. ...

  10. 51Nod 1049 最大子段和

    题目链接:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1049 #include<iostream> #i ...