Spring —— 第一个 Spring 程序

这篇博客介绍了如何创建第一个Spring程序,包括新建Maven项目,添加Spring依赖,定义业务接口和实现类,以及编写Spring配置文件。通过Spring容器管理对象,实现了在不直接实例化对象的情况下调用其方法,展示了Spring的核心功能。
摘要由CSDN通过智能技术生成

Spring —— 第一个 Spring 程序

实现步骤:

  1. 新建maven项目
  2. 修改pom.xml,加入依赖
  3. 定义类
  4. 创建 Spring 的配置文件。作用:声明对象。把对象交给 Spring 创建和管理
  5. 使用容器中的对象。

具体实现:

  1. 新建一个 Maven 项目

    在这里插入图片描述

    Project SDK 选择 8 及以上

    然后什么模板都不选,直接点击 Next

    在这里插入图片描述

    编辑项目名和坐标地址,点击 Finish

  2. 导入依赖:

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.3.18</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    

    在这里插入图片描述

  3. 编写业务层的接口

    package cn.edu.hziee.service;
    
    public interface SomeService {
        void doSomeThing();
    }
    
  4. 编写业务层的实现类

    package cn.edu.hziee.service.impl;
    
    import cn.edu.hziee.service.SomeService;
    
    public class SomeServiceImpl implements SomeService {
        @Override
        public void doSomeThing() {
            System.out.println("doSomeThing......");
        }
    }
    
  5. 开发区别

    • 使用 Spring 前

      1. 编写主启动类 Application

        package cn.edu.hziee;
        
        import cn.edu.hziee.service.SomeService;
        import cn.edu.hziee.service.impl.SomeServiceImpl;
        
        public class Application {
            public static void main(String[] args) {
                SomeService someService = new SomeServiceImpl();
                someService.doSomeThing();
            }
        }
        
      2. 运行结果

        doSomeThing......
        
    • 使用 Spring 的实现方法

      1. 在 resources 目录下编写 applicationContext.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 http://www.springframework.org/schema/beans/spring-beans.xsd">
        
            <bean id="someServiceImpl" class="cn.edu.hziee.service.impl.SomeServiceImpl"/>
        </beans>
        

        <bean> 中声明对象:

        • id:自定义对象名称,唯一值
        • class:的全限定名称,spring 通过反射机制创建对象,不能是接口
        • spring 根据 id , class 创建对象,把对象放入到 spring 的一个 map 对象。map.put(id,对象)
      2. 测试

        package cn.edu.hziee;
        
        import cn.edu.hziee.service.SomeService;
        import org.springframework.context.ApplicationContext;
        import org.springframework.context.support.ClassPathXmlApplicationContext;
        
        public class Application {
            public static void main(String[] args) {
                // 1、 指定 Spring 配置文件;从类路径(classpath)之下开始的路径
                String config = "applicationContext.xml";
                // 2、 创建容器对象,ApplicationContext 表示 Spring 容器对象。通过 ctx 获取某个 java 对象
                ApplicationContext ctx = new ClassPathXmlApplicationContext(config);
                // 3、从容器中获取指定名称的对象,使用 getBean("id")
                SomeService someService = (SomeService) ctx.getBean("someServiceImpl");
                // 4、调用对象方法
                someService.doSomeThing();
            }
        }
        
      3. 运行结果

        doSomeThing......
        

我们把Spring工厂创建的对象,叫做bean或者组件(Componet)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

bit-apk-code

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

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

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

打赏作者

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

抵扣说明:

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

余额充值