Spring容器的开启与关闭
第一步:创建Maven工程 第二步:在pom.xml中写入spring的jar包导入代码 <dependencies> <dependency> <groupId>org.springframework</groupId>
第一步:创建Maven工程
第二步:在pom.xml中写入spring的jar包导入代码
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.1.3.RELEASE</version>
</dependency>
</dependencies>第三步:查看Maven jar包是否正常生成
第四步:在resources下创建一个applicationContext.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"
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"><bean id="a" class="aoo.Aoo"/>
</beans>第五步:创建一个类
第六步:运行程序
第七步:实现一些功能
创建一个类,在aoo包下 类名为Aoo
里面写一个无参构造方法
在我们第四步中的ApplicationContext.xml中配置
加上
id属性:在整个文件中需要唯一,class是类的全名
再次运行的时候,发现Aoo中的无参构造输出语句出现了。
所以:加载配置文件的时候会自动生成类的实例
其他功能:init-method="init" --- 初始化类实例的时候会加载这个名字的方法
destroy-method="destroy" --Spring容器关闭的时候执行这个名字的方法
scope="singleton"/> --默认的生成方式是单例模式 --且应该是饿汉模式lazy-init="true" 延迟加载,就是容器启动的时候不创建类的实例,懒汉模式
更多推荐
所有评论(0)