1.创建spring项目
创建后界面显示
2.再pom.xml文件中添加Spring框架依赖
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>6.0.10</version>
</dependency>
注意:<dependencies></dependencies>也是新加的
查看外部库
3.创建Spring的配置文件
在resource中创建一个Spring配置文件(在resource中创建的文件,会在编译时被一起放到类路径下),命名为test.xml(名字可随便取),直接右键点击即可创建
将以下内容复制到test.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">
</beans>
4.Main文件中改成如下所示
package com.syq;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @description
* @author: Admin
* @create: 2024/9/9 16:16
*/
// 按两次 Shift 打开“随处搜索”对话框并输入 `show whitespaces`,
// 然后按 Enter 键。现在,您可以在代码中看到空格字符。
public class Main {
public static void main(String[] args) {
//ApplicationContext是应用程序上下文的顶层接口,它有很多种实现,这里我们先介绍第一种
//因为这里使用的是XML配置文件,所以说我们就使用 ClassPathXmlApplicationContext 这个实现类
ApplicationContext context = new ClassPathXmlApplicationContext("test.xml"); //这里写上刚刚的名字
}
}
4.新建一个entity包,并再entity包里新建一个学生类
5.如何实现把Student类交给容器(ioc容器)管理
5.1再test.xml中添加如下代码
5.2再Main主程序中验证
到此,一个简单的spring练习就结束了