Spring-1-透彻理解Spring XML的必备知识
xsobi 2024-11-24 23:35 1 浏览
学习目标
能够说出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(面向切面编程) 事务处理
- 框架整合 MyBatisMyBatis-plusStrutsStruts2Hibernate……
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 门案例思路分析
- 管理什么?(Service与Dao)
- 如何将被管理的对象告知IOC容器?(配置文件)
- 被管理的对象交给IOC容器,如何获取到IoC容器?(接口)
- IOC容器得到后,如何从容器中获取bean?(接口方法)
- 使用Spring导入哪些坐标?(pom.xml)
1.2 实现步骤
【第一步】导入Spring坐标
【第二步】定义Spring管理的类(接口)
【第三步】创建Spring配置文件,配置对应类作为Spring管理的bean对象
【第四步】初始化IOC容器(Spring核心容器/Spring容器),通过容器获取bean对象
- 项目结构
- 创建maven模块
- 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入门案例思路分析
- 基于IOC管理bean
- Service中使用new形式创建的Dao对象是否保留?(否)
- Service中需要的Dao对象如何进入到Service中?(提供方法)
- 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 图解演示
相关推荐
- js向对象中添加元素(对象,数组) js对象里面添加元素
-
一、添加一个元素对象名["属性名"]=值(值:可以是一个值,可以是一个对象,也可以是一个数组)这样添加进去的元素,就是一个值或对象或数组...
- JS小技巧,如何去重对象数组?(一)
-
大家好,关于数组对象去重的业务场景,想必大家都遇到过类似的需求吧,这对这样的需求你是怎么做的呢。下面我就先和大家分享下如果是基于对象的1个属性是怎么去重实现的。方法一:使用.filter()和....
- 「C/C++」之数组、vector对象和array对象的比较
-
数组学习过C语言的,对数组应该都不会陌生,于是这里就不再对数组进行展开介绍。模板类vector模板类vector类似于string,也是一种动态数组。能够在运行阶段设置vector对象的长度,可以在末...
- 如何用sessionStorage保存对象和数组
-
背景:在工作中,我将[{},{}]对象数组形式,存储到sessionStorage,然后ta变成了我看不懂的形式,然后我想取之用之,发现不可能了~记录这次深刻的教训。$clickCouponIndex...
- JavaScript Array 对象 javascript的array对象
-
Array对象Array对象用于在变量中存储多个值:varcars=["Saab","Volvo","BMW"];第一个数组元素的索引值为0,第二个索引值为1,以此类推。更多有...
- JavaScript中的数组Array(对象) js array数组
-
1:数组Array:-数组也是一个对象-数组也是用来存储数据的-和object不同,数组中可以存储一组有序的数据,-数组中存储的数据我们称其为元素(element)-数组中的每一个元素都有一...
- 数组和对象方法&数组去重 数组去重的5种方法前端
-
列举一下JavaScript数组和对象有哪些原生方法?数组:arr.concat(arr1,arr2,arrn);--合并两个或多个数组。此方法不会修改原有数组,而是返回一个新数组...
- C++ 类如何定义对象数组?初始化数组?linux C++第43讲
-
对象数组学过C语言的读者对数组的概念应该很熟悉了。数组的元素可以是int类型的变量,例如int...
- ElasticSearch第六篇:复合数据类型-数组,对象
-
在ElasticSearch中,使用JSON结构来存储数据,一个Key/Value对是JSON的一个字段,而Value可以是基础数据类型,也可以是数组,文档(也叫对象),或文档数组,因此,每个JSON...
- 第58条:区分数组对象和类数组对象
-
示例设想有两个不同类的API。第一个是位向量:有序的位集合varbits=newBitVector;bits.enable(4);bits.enable([1,3,8,17]);b...
- 八皇后问题解法(Common Lisp实现)
-
如何才能在一张国际象棋的棋盘上摆上八个皇后而不致使她们互相威胁呢?这个著名的问题可以方便地通过一种树搜索方法来解决。首先,我们需要写一个函数来判断棋盘上的两个皇后是否互相威协。在国际象棋中,皇后可以沿...
- visual lisp修改颜色的模板函数 怎么更改visual studio的配色
-
(defunBF-yansemokuai(tuyuanyanse/ss)...
- 用中望CAD加载LISP程序技巧 中望cad2015怎么加载燕秀
-
1、首先请加载lisp程序,加载方法如下:在菜单栏选择工具——加载应用程序——添加,选择lisp程序然后加载,然后选择添加到启动组。2、然后是添加自定义栏以及图标,方法如下(以...
- 图的深度优先搜索和广度优先搜索(Common Lisp实现)
-
为了便于描述,本文中的图指的是下图所示的无向图。搜索指:搜索从S到F的一条路径。若存在,则以表的形式返回路径;若不存在,则返回nil。...
- 两个有助于理解Common Lisp宏的例子
-
在Lisp中,函数和数据具有相同的形式。这是Lisp语言的一个重大特色。一个Lisp函数可以分析另一个Lisp函数;甚至可以和另一个Lisp函数组成一个整体,并加以利用。Lisp的宏,是实现上述特色的...
- 一周热门
- 最近发表
- 标签列表
-
- grid 设置 (58)
- 移位运算 (48)
- not specified (45)
- patch补丁 (31)
- strcat (25)
- 导航栏 (58)
- context xml (46)
- scroll (43)
- element style (30)
- dedecms模版 (53)
- vs打不开 (29)
- nmap (30)
- webgl开发 (24)
- parse (24)
- c 视频教程下载 (33)
- android 开发环境 (24)
- paddleocr (28)
- listview排序 (33)
- firebug 使用 (31)
- transactionmanager (30)
- characterencodingfilter (33)
- getmonth (34)
- commandtimeout (30)
- hibernate教程 (31)
- label换行 (33)