1.新建Maven项目
选择"File" —> 选择"New" —> 选择Maven
2.设置项目的坐标
3.设置项目的Maven环境
4.设置项目的名称和存放的工作空间
5.修改项目中pom.xml的配置
5.1修改成自己的JDK版本
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
5.2添加Spring的依赖坐标
<!--添加Spring的依赖坐标-->
<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.9.RELEASE</version>
</dependency>
6、添加spring.xml配置文件
1.在main文件下,右击新建一个文件夹,把文件夹设置成资源文件夹
2.将官方文档上的配置拷贝到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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="..." class="...">
<!-- collaborators and configuration for this bean go here -->
</bean>
<bean id="..." class="...">
<!-- collaborators and configuration for this bean go here -->
</bean>
<!-- more bean definitions go here -->
</beans>
7.通过spring.xml 配置bean对象
<bean id="userService" class="com.shsxt.service.UserService"></bean>