一、创建一个简单的maven项目
1、软件版本
1)JDK1.8+
2) maven3.5+ maven仓库[mvnrepository.com]
3) IDEA 2018+
3) Spring5.x [www.spring.io]
4) maven3.6+ IDEA 2019 可能有一些bug
> 导入依赖
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.2.6.RELEASE</version>
</dependency>
* 1、配置文件的放置位置
2、配置文件的命名 applicationContext.xml
3、应用时需要配置文件路径设置
# Spring的核心API 开发人员需要使用的
* ApplicationContext
> 1、作用 Spring 提供的ApplicationContext这个工厂,用于对象的创建,解决耦合。
2、是接口 :屏蔽实现的差异、非Web环境ClassPathXmlApplicationContext、Web环境 XmlWebApplicationContext。
* 重量级资源 (占用内存资源的多少)
> 1、ApplicationContext工厂的对象占用大量的内存
2、不会频繁的创建对象,一个应用程序会创建一个对象 (多线程访问、并发)
3、ApplicationContext工厂:一定是线程安全的
二、加入WebMcv依赖
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.6.RELEASE</version>
</dependency>