Spring容器的开启与关闭

第一步:创建Maven工程

Spring容器的开启与关闭_第1张图片

 

第二步:在pom.xml中写入spring的jar包导入代码

 
              
                org.springframework
                spring-webmvc
                4.1.3.RELEASE
            

 

第三步:查看Maven jar包是否正常生成

Spring容器的开启与关闭_第2张图片

第四步:在resources下创建一个applicationContext.xml

模版如下: 


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"  
    xmlns:jee="http://www.springframework.org/schema/jee" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

    

第五步:创建一个类  

Spring容器的开启与关闭_第3张图片

Spring容器的开启与关闭_第4张图片第六步:运行程序

第七步:实现一些功能

创建一个类,在aoo包下  类名为Aoo

里面写一个无参构造方法

Spring容器的开启与关闭_第5张图片

在我们第四步中的ApplicationContext.xml中配置

加上

id属性:在整个文件中需要唯一,class是类的全名

再次运行的时候,发现Aoo中的无参构造输出语句出现了。

所以:加载配置文件的时候会自动生成类的实例

其他功能:init-method="init"     --- 初始化类实例的时候会加载这个名字的方法
                    destroy-method="destroy"  --Spring容器关闭的时候执行这个名字的方法
                    scope="singleton"/>  --默认的生成方式是单例模式  --且应该是饿汉模式

                   lazy-init="true"     延迟加载,就是容器启动的时候不创建类的实例,懒汉模式 

你可能感兴趣的:(Spring容器的开启与关闭)