idea创建一个spring项目,并编写一个初级spring项目实战(全网最详细)

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练习就结束了 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

布凡哦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值