Spring-1-透彻理解Spring XML的必备知识

本文介绍了Spring框架的学习目标,包括Spring的体系结构、核心概念如IoC和DI,以及与SpringBoot的关系。讲解了Spring的简化开发特性、AOP和事务处理,以及如何通过Spring进行框架整合。重点阐述了IoC和DI的入门案例,展示了如何在Spring中使用XML配置和依赖注入来解耦代码。
摘要由CSDN通过智能技术生成

学习目标

能够说出Spring的体系结构

能够编写IOC-DI快速入门

思考:为什么学习Spring而不是直接学习SpringBoot

1 Spring介绍

思考:我们为什么要学习Spring框架?

  • 工作上面
    • Java拥有世界上数量最多的程序员

    • 最多的岗位需求与高额薪资

    • 95%以上服务器端还是要用Java开发

  • 专业角度
    • 简化开发,降低企业级开发的复杂性

    • 框架整合,高效整合其他技术,提高企业级应用开发与运行效率

Spring和SpringBoot关系

关系:Spring Boot构建在Spring之上,兼容并继承了原生Spring框架的特性和功能。通过Spring Boot,开发者无需手动配置太多内容,可以快速搭建基于Spring的应用程序。同时,Spring Boot与Spring紧密结合,可以方便地使用Spring的各种特性和扩展组件。

总而言之,Spring Boot是对Spring的拓展和增强,旨在简化Spring应用程序的开发和部署。Spring和Spring Boot共同构成了一个强大、灵活且易于使用的Java应用程序开发生态系统。

1.1 学习Spring的什么知识
  • 简化开发

    • IOC(控制反转)

    • AOP(面向切面编程)
      • 事务处理

  • 框架整合

    • MyBatis

    • MyBatis-plus

    • Struts

    • Struts2

    • Hibernate

    • ……

1.3 怎么学
  • 学习Spring框架设计思想

  • 学习基础操作,思考操作与设计思想间的联系

  • 学习案例,熟练应用操作的同时,体会设计思想

2 Spring初认识

目前我们使用的是Spring几版本?

从官网发现以及到了6.x

2.1 Spring家族
  • 官网:https://spring.io

  • Spring发展到今天已经形成了一种开发的生态圈,Spring提供了若干个项目,每个项目用于完成特定的功能。

3 Spring体系结构

问题导入

通过系统架构图,Spring能不能进行数据层开发?Spring能不能进行web层开发?

3.1 Spring Framework系统架构图
  • Spring Framework是Spring生态圈中最基础的项目,是其他项目的根基

3.2 Spring Framework如何学习
  • 1.核心容器
    • 核心概念IOC/DI

    • 容器基本操作

  • 2.AOP
    • AOP概念

    • AOP基本操作

  • 3.Spring事务
    • 事务使用

  • 4.整合第三方框架
    • 整合数据框架MyBatis

4 Spring核心概念

问题1:目前我们的代码存在什么问题以及怎么解决这些问题?

思考:什么是IoC,什么是DI?

4.1 目前我们代码存在的问题

从上图思考问题:如果因为业务需要StudentServiceImpl,需要一个新的StudentDao实现 StudentDaoImpl2,name我们就需要在StudentServiceImpl中修改代码,也就是修改

    //创建成员对象
    private StudentDao studentDao = new StudentDaoImpl2();

出现问题:

  • 代码书写现状
    • 耦合度偏高

  • 解决方案
    • 使用对象时,在程序中不要主动使用new产生对象,转换为由外部提供对象

4.2 核心概念
  • IOC(Inversion of Control)控制反转

    使用对象时,由主动new产生对象转换为由外部提供对象,此过程中对象创建控制权由程序转移到外部,此思想称为控制反转。通俗的讲就是“将new对象的权利交给Spring,我们从Spring中获取对象使用即可

  • Spring技术对IoC思想进行了实现

    • Spring提供了一个容器,称为IOC容器,用来充当IoC思想中的“外部”

    • IOC容器负责对象的创建、初始化等一系列工作,被创建或被管理的对象在IoC容器中统称为Bean对象

  • DI(Dependency Injection)依赖注入

    • 在容器中建立bean与bean之间的依赖关系的整个过程,称为依赖注入。

  • 目标:充分解耦
    • 使用IoC容器管理bean(IOC)

    • 在IoC容器内将有依赖关系的bean进行关系绑定(DI)

  • 最终效果
    • 使用对象时不仅可以直接从IoC容器中获取,并且获取到的bean已经绑定了所有的依赖关系

二、IOC和DI入门案例【重点】

1 IOC入门案例【重点】

思考:Spring中的IOC代码如何实现?

1.1 门案例思路分析
  1. 管理什么?(Service与Dao)

  2. 如何将被管理的对象告知IOC容器?(配置文件)

  3. 被管理的对象交给IOC容器,如何获取到IoC容器?(接口)

  4. IOC容器得到后,如何从容器中获取bean?(接口方法)

  5. 使用Spring导入哪些坐标?(pom.xml)

1.2 实现步骤
【第一步】导入Spring坐标
【第二步】定义Spring管理的类(接口)
【第三步】创建Spring配置文件,配置对应类作为Spring管理的bean对象
【第四步】初始化IOC容器(Spring核心容器/Spring容器),通过容器获取bean对象
  1. 项目结构

  1. 创建maven模块

  1. Student实体类

1.3 实现代码

【第0步】导入Spring坐标

  <dependencies>
      <!--导入spring的坐标spring-context,对应版本是5.2.10.RELEASE-->
      <dependency>
          <groupId>org.springframework</groupId>
          <artifactId>spring-context</artifactId>
          <version>5.3.15</version>
      </dependency>

      <!-- 导入junit的测试包 -->
      <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter</artifactId>
          <version>5.8.2</version>
          <scope>test</scope>
      </dependency>

      <dependency>
          <groupId>org.projectlombok</groupId>
          <artifactId>lombok</artifactId>
          <version>1.18.28</version>
      </dependency>
  </dependencies>

【第一步】导入Student实体类

@Data
@ToString
@AllArgsConstructor
public class Student {
    private String name;
    private String address;
    private Integer age;

    private Integer status;
}

【第二步】定义Spring管理的类(接口)

  • StudentDao接口和StudentDaoImpl实现类

package com.zbbmeta.dao;

public interface StudentDao {
    /**
     * 添加学生
     */
    void save();
}
package com.zbbmeta.dao.impl;

import com.zbbmeta.dao.StudentDao;

public class StudentDaoImpl implements StudentDao {
    @Override
    public void save() {
        System.out.println("DAO: 添加学生信息到数据库...");
    }
}

  • StudentService接口和StudentServiceImpl实现类

package com.zbbmeta.service;

public interface StudentService {
    /**
     * 添加学生
     */
    void save();
}

package com.zbbmeta.service.impl;

import com.zbbmeta.dao.StudentDao;
import com.zbbmeta.dao.impl.StudentDaoImpl;
import com.zbbmeta.service.StudentService;

public class StudentServiceImpl implements StudentService {

    //创建成员对象
    private StudentDao studentDao = new StudentDaoImpl();
    @Override
    public void save() {

    }
}

【第三步】创建Spring配置文件在resources目录下,配置对应类作为Spring管理的bean对象

  • 定义1_ioc_di.xml配置文件并配置StudentDaoImpl

<?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">

    <!--
1.目标:使用xml进行spring的IOC开发,让IOC创建StudentDaoImpl对象
-->

    <!--1.创建StudentDaoImpl对象
        <bean id="" class="">
        id:设置对象别名,这个id值必须唯一,便于以后从IOC容器中获取这个对象
        class:设置对那个类全名生成对象
    -->
    <bean class="com.zbbmeta.dao.impl.StudentDaoImpl" id="studentDao"></bean>
</beans>

注意事项:bean定义时id属性在同一个上下文中(IOC容器中)不能重复

【第四步】初始化IOC容器(Spring核心容器/Spring容器),通过容器获取Bean对象

package com.zbbmeta;

import com.zbbmeta.dao.StudentDao;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class QuickStartApplication {
    public static void main(String[] args) {
        //1.根据配置文件1_ioc.xml创建IOC容器
        ClassPathXmlApplicationContext ac = new ClassPathXmlApplicationContext("1_ioc_di.xml");

        //2.从IOC容器里面获取id="studentDao"对象
        StudentDao studentDao = (StudentDao) ac.getBean("studentDao");

        //3.执行对象方法
        studentDao.save();

        //4.关闭容器
        ac.close();
    }
}
1.4 运行结果

2 DI入门案例【重点】

思考:Spring中的IOC中已经存在了,studentDao,那么现在如果我还有创建一个bean对象studentService可以像刚才一样直接创建?

不可以,因为studentService中,创建了studentDao对象,所有要将stuentDao注入(DI)到studentService

2.1 DI入门案例思路分析
  1. 基于IOC管理bean

  2. Service中使用new形式创建的Dao对象是否保留?(否)

  3. Service中需要的Dao对象如何进入到Service中?(提供方法)

  4. Service与Dao间的关系如何描述?(配置)

2.2 实现步骤
【第一步】删除使用new的形式创建对象的代码
【第二步】提供依赖对象对应的setter方法
【第三步】配置service与dao之间的关系
2.3 实现代码

【第一步】删除使用new的形式创建对象的代码

package com.zbbmeta.service.impl;

import com.zbbmeta.dao.StudentDao;
import com.zbbmeta.dao.impl.StudentDaoImpl;
import com.zbbmeta.service.StudentService;

public class StudentServiceImpl implements StudentService {

    //创建成员对象
    //【第一步】删除使用new的形式创建对象的代码,解除对象之间的耦合度
//    private StudentDao studentDao = new StudentDaoImpl();

    private StudentDao studentDao ;

    @Override
    public void save() {
        System.out.println("Service: 添加学生信息到数据库...");
        studentDao.save();
    }
}

【第二步】提供依赖对象对应的setter方法

package com.zbbmeta.service.impl;

import com.zbbmeta.dao.StudentDao;
import com.zbbmeta.service.StudentService;

public class StudentServiceImpl implements StudentService {

    //创建成员对象
    //【第一步】删除使用new的形式创建对象的代码,解除对象之间的耦合度
//    private StudentDao studentDao = new StudentDaoImpl();

    private StudentDao studentDao ;
    //【第二步】提供依赖对象对应的setter方法
    public void setStudentDao(StudentDao studentDao) {
        this.studentDao = studentDao;
    }

    @Override
    public void save() {
        System.out.println("Service: 添加学生信息到数据库...");
        studentDao.save();
    }
}

【第三步】配置service与dao之间的关系

在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">

    <!--
1.目标:使用xml进行spring的IOC开发,让IOC创建StudentDaoImpl对象
bean 可以看出  new StudentDaoImpl()
-->

    <!--1.创建StudentDaoImpl对象
        <bean id="" class="">
        id:设置对象别名,这个id值必须唯一,便于以后从IOC容器中获取这个对象
        class:设置对那个类全名生成对象
    -->
    <bean class="com.zbbmeta.dao.impl.StudentDaoImpl" id="studentDao"></bean>


    <!--
1.1目标:使用xml进行spring的IOC开发,BookServiceImpl对象
-->
    <bean class="com.zbbmeta.service.impl.StudentServiceImpl" id="studentService">

        <!--3.给StudentServiceImpl对象里面studentDao成员赋值(DI 依赖注入)
     调用 public void setStudentDao(StudentDao studentDao)  {this.studentDao = studentDao;}
     name="studentDao" 含义是调用setStudentDao方法
      ref="studentDao", 从IOC容器中查找id="setStudentDao"的对象传递给setStudentDao方法作为参数使用
-->
        <property name="studentDao" ref="studentDao"></property>

    </bean>
</beans>

【第四步】初始化IOC容器(Spring核心容器/Spring容器),通过容器获取studentDao对象

package com.zbbmeta;

import com.zbbmeta.service.StudentService;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class DIApplication {

    public static void main(String[] args) {
        /**
         * //目标:从IOC容器里面获取studentService对象执行
         */
        //1.根据配置文件1_ioc.xml创建IOC容器
        ClassPathXmlApplicationContext ac = new ClassPathXmlApplicationContext("1_ioc_di.xml");
        //2.从IOC容器里面获取id="studentService"对象
        StudentService studentService = (StudentService) ac.getBean("studentService");
        //3.执行对象方法
        studentService.save();
        //4.关闭容器
        ac.close();
    }
}

控制台结果

2.4 图解演示

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值