Spring 简单使用

本文将介绍如何在项目中使用 Spring 。

一、导入依赖

在 pom.xml 中添加配置信息如下:

1
2
3
4
5
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>版本号</version>
</dependency>

二、编写 Java 类

1
2
3
public class 类名 {
···
}

三、编写配置文件

Spring 配置文件

在 resources 目录下新建 xml 文件,填写如下:

1
2
3
4
5
6
7
8
9
10
11
<?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="Bean名" class="全限定类名"/>
···

</beans>

四、获取 Bean

1
2
3
4
5
 // 获取Spring的上下文对象
ApplicationContext context = new ClassPathXmlApplicationContext("配置文件路径");

// 获取Bean
context.getBean("Bean名");

参考