首页 > 其他分享 >Spring-1-透彻理解Spring XML的必备知识

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

时间:2023-08-03 13:33:19浏览次数:32  
标签:XML 容器 对象 Spring 必备 zbbmeta com IOC

学习目标

能够说出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

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

2.1 Spring家族

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

Spring-1-透彻理解Spring XML的必备知识_配置文件_02

Spring-1-透彻理解Spring XML的必备知识_配置文件_03

3 Spring体系结构

问题导入

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

3.1 Spring Framework系统架构图

  • Spring Framework是Spring生态圈中最基础的项目,是其他项目的根基

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

3.2 Spring Framework如何学习

  • 1.核心容器
  • 核心概念IOC/DI
  • 容器基本操作
  • 2.AOP
  • AOP概念
  • AOP基本操作
  • 3.Spring事务
  • 事务使用
  • 4.整合第三方框架
  • 整合数据框架MyBatis

4 Spring核心概念

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

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

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

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

从上图思考问题:如果因为业务需要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之间的依赖关系的整个过程,称为依赖注入。

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

  • 目标:充分解耦
  • 使用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. 项目结构

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

  1. 创建maven模块

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

  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对象

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

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

  • 定义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 运行结果

Spring-1-透彻理解Spring XML的必备知识_配置文件_11

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();
    }
}

控制台结果

Spring-1-透彻理解Spring XML的必备知识_配置文件_12

2.4 图解演示

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


标签:XML,容器,对象,Spring,必备,zbbmeta,com,IOC
From: https://blog.51cto.com/u_12023894/6948446

相关文章

  • docker部署项目,涉及springboot\tomacat\nginx\es
    sudoapt-getinstalldocker-ce=5:20.10.6~3-0~debian-bullseyedocker-ce-cli=5:20.10.6~3-0~debian-bullseyecontainerd.iodocker部署项目信息:--172.17.0.1   172.16.22.401、docker部署tomcatdockerrun-d --namestock-admin--restartalways-p81:8080-e"TZ......
  • Spring Authorization Server (十)自定义异常
    在前面的篇章中,我们在请求认证服务器的交互过程去中,如果出现了异常,则服务器响应给客户端的信息格式非常不友好,我们希望服务器在发生异常时,将异常信息按照固定的json格式返回给客户端,这时需要我们来自定义异常,我们需要将异常进行捕获,然后按照我们定义的格式输出。那么本篇,我们就来介......
  • web渗透测试(15):XML攻击
    在本节中,将详细介绍与XML相关的攻击。这些类型的攻击在Web服务和使用XPath从XML文件中检索配置设置的应用程序中很常见(例如,根据提供的组织名称了解他们需要使用哪些后端来验证用户)。 Example1<?phprequire_once("../header.php");?>Hello<?php$xml=simplexml_load_......
  • @SpringBootTest
     1.学会使用Test,让自己的代码不再有bug——@SpringBootTest的妙用 https://baijiahao.baidu.com/s?id=1760961522946985249&wfr=spider&for=pc2.SpringBootTest人类使用指南https://zhuanlan.zhihu.com/p/111418479  3.解析“@ExtendWith注解“https://blog.csdn......
  • 方便在非spring管理环境中获取bean的spring工具类
    spring工具类方便在非spring管理环境中获取beanimportorg.springframework.aop.framework.AopContext;importorg.springframework.beans.BeansException;importorg.springframework.beans.factory.NoSuchBeanDefinitionException;importorg.springframework.beans.facto......
  • SpringBoot-3 拦截器注入配置
    如果拦截器加载的时间点在Spring的上下文初始化之前,导致注入的值为null,您可以尝试以下两种解决方法:使用@PostConstruct注解:在拦截器中使用@PostConstruct注解标记一个初始化方法,在该方法中手动获取配置值,并进行相应的处理。这样可以确保在拦截器初始化完成后,配置值已经被正确加......
  • SpringMVC入门案例
    坐标<!--Spring坐标--><dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.5.RELEASE</version><......
  • SpringBoot 快速配置日志方法
     快速配置日志方法#loglogging.file=logs/stdout.loglogging.file.max-size=20KBlogging.pattern.file=%date[%thread][IP:%X{ip}|USER:%X{user}][%-5level%logger{80}]%msg%nlogging.pattern.console=%date[%thread][IP:%X{ip}|USER:%X{user}][%-5level%logger{80}]......
  • SpringBoot 单元测试不执行:maven-surefire-plugin 版本问题
    SpringBoot单元测试不执行:maven-surefire-plugin版本问题 问题现象SpringBoot项目,在编写单元测试时,使用了JUnit4.13.2以上的版本。为了让Maven能自动运行单元测试,需要引入MavenSurefire或MavenFailsafe插件。项目中使用的maven-surefire-plugin版本号为......
  • 运维——springboot项目部署
    转自:https://juejin.cn/post/6844903877150507016#heading-20摘要本文主要以图文的形式讲解mall在Linux环境下的部署,涉及在Docker容器中安装Mysql、Redis、Nginx、RabbitMQ、Elasticsearch、Mongodb,以及SpringBoot应用部署,基于CenterOS7.6。Docker环境安装安装yum-utils:......