一、Spring启示录

阅读以下代码:

  1. package com.powernode.oa.controller;
  2. import com.powernode.oa.service.UserService;
  3. import com.powernode.oa.service.impl.UserServiceImpl;
  4. public class UserController {
  5. private UserService userService = new UserServiceImpl();
  6. public void login(){
  7. String username = "admin";
  8. String password = "123456";
  9. boolean success = userService.login(username, password);
  10. if (success) {
  11. // 登录成功
  12. } else {
  13. // 登录失败
  14. }
  15. }
  16. }
  1. package com.powernode.oa.service.impl;
  2. import com.powernode.oa.bean.User;
  3. import com.powernode.oa.dao.UserDao;
  4. import com.powernode.oa.dao.impl.UserDaoImplForMySQL;
  5. import com.powernode.oa.service.UserService;
  6. public class UserServiceImpl implements UserService {
  7. private UserDao userDao = new UserDaoImplForMySQL();
  8. public boolean login(String username, String password) {
  9. User user = userDao.selectByUsernameAndPassword(username, password);
  10. if (user != null) {
  11. return true;
  12. }
  13. return false;
  14. }
  15. }
  1. package com.powernode.oa.dao.impl;
  2. import com.powernode.oa.bean.User;
  3. import com.powernode.oa.dao.UserDao;
  4. public class UserDaoImplForMySQL implements UserDao {
  5. public User selectByUsernameAndPassword(String username, String password) {
  6. // 连接MySQL数据库,根据用户名和密码查询用户信息
  7. return null;
  8. }
  9. }

可以看出,UserDaoImplForMySQL中主要是连接MySQL数据库进行操作。如果更换到Oracle数据库上,则需要再提供一个UserDaoImplForOracle,如下:

  1. package com.powernode.oa.dao.impl;
  2. import com.powernode.oa.bean.User;
  3. import com.powernode.oa.dao.UserDao;
  4. public class UserDaoImplForOracle implements UserDao {
  5. public User selectByUsernameAndPassword(String username, String password) {
  6. // 连接Oracle数据库,根据用户名和密码查询用户信息
  7. return null;
  8. }
  9. }

很明显,以上的操作正在进行功能的扩展,添加了一个新的类UserDaoImplForOracle来应付数据库的变化,这里的变化会引起连锁反应吗?当然会,如果想要切换到Oracle数据库上,UserServiceImpl类代码就需要修改,如下:

  1. package com.powernode.oa.service.impl;
  2. import com.powernode.oa.bean.User;
  3. import com.powernode.oa.dao.UserDao;
  4. import com.powernode.oa.dao.impl.UserDaoImplForOracle;
  5. import com.powernode.oa.service.UserService;
  6. public class UserServiceImpl implements UserService {
  7. //private UserDao userDao = new UserDaoImplForMySQL();
  8. private UserDao userDao = new UserDaoImplForOracle();
  9. public boolean login(String username, String password) {
  10. User user = userDao.selectByUsernameAndPassword(username, password);
  11. if (user != null) {
  12. return true;
  13. }
  14. return false;
  15. }
  16. }

1.1 OCP开闭原则

这样一来就违背了开闭原则OCP。开闭原则是这样说的:在软件开发过程中应当对扩展开放,对修改关闭。也就是说,如果在进行功能扩展的时候,添加额外的类是没问题的,但因为功能扩展而修改之前运行正常的程序,这是忌讳的,不被允许的。因为一旦修改之前运行正常的程序,就会导致项目整体要进行全方位的重新测试。这是相当麻烦的过程。导致以上问题的主要原因是:代码和代码之间的耦合度太高。如下图所示:
image.png
可以很明显的看出,上层是依赖下层的。UserController依赖UserServiceImpl,而UserServiceImpl依赖UserDaoImplForMySQL,这样就会导致下面只要改动上面必然会受牵连(跟着也会改),所谓牵一发而动全身。这样也就同时违背了另一个开发原则:依赖倒置原则。

1.2 依赖倒置原则DIP

依赖倒置原则(Dependence Inversion Principle),简称DIP,主要倡导面向抽象编程,面向接口编程,不要面向具体编程,让上层不再依赖下层,下面改动了,上面的代码不会受到牵连。这样可以大大降低程序的耦合度,耦合度低了,扩展力就强了,同时代码复用性也会增强。(软件七大开发原则都是在为解耦合服务
你可能会说,上面的代码已经面向接口编程了呀:
image.png
确实已经面向接口编程了,但对象的创建是:new UserDaoImplForOracle()显然并没有完全面向接口编程,还是使用到了具体的接口实现类。什么叫做完全面向接口编程?什么叫做完全符合依赖倒置原则呢?请看以下代码:
image.png
如果代码是这样编写的,才算是完全面向接口编程,才符合依赖倒置原则。那你可能会问,这样userDao是null,在执行的时候就会出现空指针异常呀。你说的有道理,确实是这样的,所以我们要解决这个问题。解决空指针异常的问题,其实就是解决两个核心的问题:

  • 第一个问题:谁来负责对象的创建。【也就是说谁来:new UserDaoImplForOracle()/new UserDaoImplForMySQL()】
  • 第二个问题:谁来负责把创建的对象赋到这个属性上。【也就是说谁来把上面创建的对象赋给userDao属性】

如果我们把以上两个核心问题解决了,就可以做到既符合OCP开闭原则,又符合依赖倒置原则。
很荣幸的通知你:Spring框架可以做到。
在Spring框架中,它可以帮助我们new对象,并且它还可以将new出来的对象赋到属性上。换句话说,Spring框架可以帮助我们创建对象,并且可以帮助我们维护对象和对象之间的关系。比如:
image.png
Spring可以new出来UserDaoImplForMySQL对象,也可以new出来UserDaoImplForOracle对象,并且还可以让new出来的dao对象和service对象产生关系(产生关系其实本质上就是给属性赋值)。
很显然,这种方式是将对象的创建权/管理权交出去了,不再使用硬编码的方式了。同时也把对象关系的管理权交出去了,也不再使用硬编码的方式了。像这种把对象的创建权交出去,把对象关系的管理权交出去,被称为控制反转。

1.3 控制反转IoC

控制反转(Inversion of Control,缩写为IoC),是面向对象编程中的一种设计思想,可以用来降低代码之间的耦合度,符合依赖倒置原则。
控制反转的核心是:将对象的创建权交出去,将对象和对象之间关系的管理权交出去,由第三方容器来负责创建与维护
控制反转常见的实现方式:依赖注入(Dependency Injection,简称DI)
通常,依赖注入的实现由包括两种方式:

  • set方法注入
  • 构造方法注入

而Spring框架就是一个实现了IoC思想的框架。
IoC可以认为是一种全新的设计模式,但是理论和时间成熟相对较晚,并没有包含在GoF中。(GoF指的是23种设计模式)

二、Spring概述

2.1 Spring简介

image.png
来自百度百科

Spring是一个开源框架,它由Rod Johnson创建。它是为了解决企业应用开发的复杂性而创建的。 从简单性、可测试性和松耦合的角度而言,任何Java应用都可以从Spring中受益。 Spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架。 Spring最初的出现是为了解决EJB臃肿的设计,以及难以测试等问题。 Spring为简化开发而生,让程序员只需关注核心业务的实现,尽可能的不再关注非业务逻辑代码(事务控制,安全日志等)。

2.2 Spring8大模块

注意:Spring5版本之后是8个模块。在Spring5中新增了WebFlux模块。
image.png

  1. Spring Core模块

这是Spring框架最基础的部分,它提供了依赖注入(DependencyInjection)特征来实现容器对Bean的管理。核心容器的主要组件是 BeanFactory,BeanFactory是工厂模式的一个实现,是任何Spring应用的核心。它使用IoC将应用配置和依赖从实际的应用代码中分离出来。

  1. Spring Context模块

如果说核心模块中的BeanFactory使Spring成为容器的话,那么上下文模块就是Spring成为框架的原因。
这个模块扩展了BeanFactory,增加了对国际化(I18N)消息、事件传播、验证的支持。另外提供了许多企业服务,例如电子邮件、JNDI访问、EJB集成、远程以及时序调度(scheduling)服务。也包括了对模版框架例如Velocity和FreeMarker集成的支持

  1. Spring AOP模块

Spring在它的AOP模块中提供了对面向切面编程的丰富支持,Spring AOP 模块为基于 Spring 的应用程序中的对象提供了事务管理服务。通过使用 Spring AOP,不用依赖组件,就可以将声明性事务管理集成到应用程序中,可以自定义拦截器、切点、日志等操作。

  1. Spring DAO模块

提供了一个JDBC的抽象层和异常层次结构,消除了烦琐的JDBC编码和数据库厂商特有的错误代码解析,用于简化JDBC。

  1. Spring ORM模块

Spring提供了ORM模块。Spring并不试图实现它自己的ORM解决方案,而是为几种流行的ORM框架提供了集成方案,包括Hibernate、JDO和iBATIS SQL映射,这些都遵从 Spring 的通用事务和 DAO 异常层次结构。

  1. Spring Web MVC模块

Spring为构建Web应用提供了一个功能全面的MVC框架。虽然Spring可以很容易地与其它MVC框架集成,例如Struts,但Spring的MVC框架使用IoC对控制逻辑和业务对象提供了完全的分离。

  1. Spring WebFlux模块

Spring Framework 中包含的原始 Web 框架 Spring Web MVC 是专门为 Servlet API 和 Servlet 容器构建的。反应式堆栈 Web 框架 Spring WebFlux 是在 5.0 版的后期添加的。它是完全非阻塞的,支持反应式流(Reactive Stream)背压,并在Netty,Undertow和Servlet 3.1+容器等服务器上运行。
image.png

  1. Spring Web模块

Web 上下文模块建立在应用程序上下文模块之上,为基于 Web 的应用程序提供了上下文,提供了Spring和其它Web框架的集成,比如Struts、WebWork。还提供了一些面向服务支持,例如:实现文件上传的multipart请求。

2.3 Spring特点

  1. 轻量
    1. 从大小与开销两方面而言Spring都是轻量的。完整的Spring框架可以在一个大小只有1MB多的JAR文件里发布。并且Spring所需的处理开销也是微不足道的。
    2. Spring是非侵入式的:Spring应用中的对象不依赖于Spring的特定类。
  2. 控制反转
    1. Spring通过一种称作控制反转(IoC)的技术促进了松耦合。当应用了IoC,一个对象依赖的其它对象会通过被动的方式传递进来,而不是这个对象自己创建或者查找依赖对象。你可以认为IoC与JNDI相反——不是对象从容器中查找依赖,而是容器在对象初始化时不等对象请求就主动将依赖传递给它。
  3. 面向切面
    1. Spring提供了面向切面编程的丰富支持,允许通过分离应用的业务逻辑与系统级服务(例如审计(auditing)和事务(transaction)管理)进行内聚性的开发。应用对象只实现它们应该做的——完成业务逻辑——仅此而已。它们并不负责(甚至是意识)其它的系统级关注点,例如日志或事务支持。
  4. 容器
    1. Spring包含并管理应用对象的配置和生命周期,在这个意义上它是一种容器,你可以配置你的每个bean如何被创建——基于一个可配置原型(prototype),你的bean可以创建一个单独的实例或者每次需要时都生成一个新的实例——以及它们是如何相互关联的。然而,Spring不应该被混同于传统的重量级的EJB容器,它们经常是庞大与笨重的,难以使用。
  5. 框架
    1. Spring可以将简单的组件配置、组合成为复杂的应用。在Spring中,应用对象被声明式地组合,典型地是在一个XML文件里。Spring也提供了很多基础功能(事务管理、持久化框架集成等等),将应用逻辑的开发留给了你。

所有Spring的这些特征使你能够编写更干净、更可管理、并且更易于测试的代码。它们也为Spring中的各种模块提供了基础支持。

2.4 本教程软件版本

  • IDEA工具:2022.1.4
  • JDK:Java17(Spring6要求JDK最低版本是Java17)
  • Maven:3.8.6
  • Spring:6.0.0-M2
  • JUnit:4.13.2

三、Spring的入门程序

3.1 Spring的下载

官网地址:https://spring.io/
image.png
官网地址(中文):http://spring.p2hp.com/
image.png
打开Spring官网后,可以看到Spring Framework,以及通过Spring Framework衍生的其它框架:
image.png
我们即将要学习的就是Spring Framework。
怎么下载呢?

  • 第一步:进入github

image.png

  • 第二步:找到下图位置,点击超链接

image.png

  • 第三步:找到下图位置,点击超链接

image.png

  • 第四步:按照下图步骤操作

image.png

  • 第五步:继续在springframework目录下找下图的spring,点开之后你会看到很多不同的版本

image.png

  • 第六步:选择对应的版本

image.png

  • 第七步:点击上图的url

image.png
点击spring-5.3.9-dist.zip下载spring框架。
将下载的zip包解压:
image.png
docs:spring框架的API帮助文档
libs:spring框架的jar文件(用spring框架就是用这些jar包
schema:spring框架的XML配置文件相关的约束文件

3.2 Spring的jar文件

打开libs目录,会看到很多jar包:
image.png
spring-core-5.3.9.jar:字节码(这个是支撑程序运行的jar包
spring-core-5.3.9-javadoc.jar:代码中的注释
spring-core-5.3.9-sources.jar:源码
我们来看一下spring框架都有哪些jar包:
image.png

JAR文件 描述
spring-aop-5.3.9.jar 这个jar 文件包含在应用中使用Spring 的AOP 特性时所需的类
spring-aspects-5.3.9.jar 提供对AspectJ的支持,以便可以方便的将面向切面的功能集成进IDE中
spring-beans-5.3.9.jar 这个jar 文件是所有应用都要用到的,它包含访问配置文件、创建和管理bean 以及进行Inversion ofControl / Dependency Injection(IoC/DI)操作相关的所有类。如果应用只需基本的IoC/DI 支持,引入spring-core.jar 及spring-beans.jar 文件就可以了。
spring-context-5.3.9.jar 这个jar 文件为Spring 核心提供了大量扩展。可以找到使用Spring ApplicationContext特性时所需的全部类,JDNI 所需的全部类,instrumentation组件以及校验Validation 方面的相关类。
spring-context-indexer-5.3.9.jar 虽然类路径扫描非常快,但是Spring内部存在大量的类,添加此依赖,可以通过在编译时创建候选对象的静态列表来提高大型应用程序的启动性能。
spring-context-support-5.3.9.jar 用来提供Spring上下文的一些扩展模块,例如实现邮件服务、视图解析、缓存、定时任务调度等
spring-core-5.3.9.jar Spring 框架基本的核心工具类。Spring 其它组件要都要使用到这个包里的类,是其它组件的基本核心,当然你也可以在自己的应用系统中使用这些工具类。
spring-expression-5.3.9.jar Spring表达式语言。
spring-instrument-5.3.9.jar Spring3.0对服务器的代理接口。
spring-jcl-5.3.9.jar Spring的日志模块。JCL,全称为”Jakarta Commons Logging”,也可称为”Apache Commons Logging”。
spring-jdbc-5.3.9.jar Spring对JDBC的支持。
spring-jms-5.3.9.jar 这个jar包提供了对JMS 1.0.2/1.1的支持类。JMS是Java消息服务。属于JavaEE规范之一。
spring-messaging-5.3.9.jar 为集成messaging api和消息协议提供支持
spring-orm-5.3.9.jar Spring集成ORM框架的支持,比如集成hibernate,mybatis等。
spring-oxm-5.3.9.jar 为主流O/X Mapping组件提供了统一层抽象和封装,OXM是Object Xml Mapping。对象和XML之间的相互转换。
spring-r2dbc-5.3.9.jar Reactive Relational Database Connectivity (关系型数据库的响应式连接) 的缩写。这个jar文件是Spring对r2dbc的支持。
spring-test-5.3.9.jar 对Junit等测试框架的简单封装。
spring-tx-5.3.9.jar 为JDBC、Hibernate、JDO、JPA、Beans等提供的一致的声明式和编程式事务管理支持。
spring-web-5.3.9.jar Spring集成MVC框架的支持,比如集成Struts等。
spring-webflux-5.3.9.jar WebFlux是 Spring5 添加的新模块,用于 web 的开发,功能和 SpringMVC 类似的,Webflux 使用当前一种比较流程响应式编程出现的框架。
spring-webmvc-5.3.9.jar SpringMVC框架的类库
spring-websocket-5.3.9.jar Spring集成WebSocket框架时使用

注意:
如果你只是想用Spring的IoC功能,仅需要引入:spring-context即可。将这个jar包添加到classpath当中。
如果采用maven只需要引入context的依赖即可。

  1. <!--Spring6的正式版发布之前,这个仓库地址是需要的-->
  2. <repositories>
  3. <repository>
  4. <id>repository.spring.milestone</id>
  5. <name>Spring Milestone Repository</name>
  6. <url>https://repo.spring.io/milestone</url>
  7. </repository>
  8. </repositories>
  9. <dependencies>
  10. <!--spring context依赖:使用的是6.0.0-M2里程碑版-->
  11. <dependency>
  12. <groupId>org.springframework</groupId>
  13. <artifactId>spring-context</artifactId>
  14. <version>6.0.0-M2</version>
  15. </dependency>
  16. </dependencies>

3.3 第一个Spring程序

前期准备

  • 打开IDEA创建Empty Project:spring6

image.png

  • 设置JDK版本17,编译器版本17

image.png

  • 设置IDEA的Maven:关联自己的maven

image.png

  • 在空的工程spring6中创建第一个模块:spring6-001-first

image.png
第一步:添加spring context的依赖,pom.xml配置如下

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.powernode</groupId>
  7. <artifactId>spring6-001-first</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <repositories>
  11. <repository>
  12. <id>repository.spring.milestone</id>
  13. <name>Spring Milestone Repository</name>
  14. <url>https://repo.spring.io/milestone</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <!--spring context依赖-->
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-context</artifactId>
  22. <version>6.0.0-M2</version>
  23. </dependency>
  24. </dependencies>
  25. <properties>
  26. <maven.compiler.source>17</maven.compiler.source>
  27. <maven.compiler.target>17</maven.compiler.target>
  28. </properties>
  29. </project>

注意:打包方式jar。
当加入spring context的依赖之后,会关联引入其他依赖:
spring aop:面向切面编程
spring beans:IoC核心
spring core:spring的核心工具包
spring jcl:spring的日志包
spring expression:spring表达式
image.png
第二步:添加junit依赖

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.powernode</groupId>
  7. <artifactId>spring6-001-first</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <repositories>
  11. <repository>
  12. <id>repository.spring.milestone</id>
  13. <name>Spring Milestone Repository</name>
  14. <url>https://repo.spring.io/milestone</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <!--spring context依赖-->
  19. <dependency>
  20. <groupId>org.springframework</groupId>
  21. <artifactId>spring-context</artifactId>
  22. <version>6.0.0-M2</version>
  23. </dependency>
  24. <!--junit-->
  25. <dependency>
  26. <groupId>junit</groupId>
  27. <artifactId>junit</artifactId>
  28. <version>4.13.2</version>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <properties>
  33. <maven.compiler.source>17</maven.compiler.source>
  34. <maven.compiler.target>17</maven.compiler.target>
  35. </properties>
  36. </project>

第三步:定义bean:User

  1. package com.powernode.spring6.bean;
  2. /**
  3. * bean,封装用户信息。
  4. * @author 动力节点
  5. * @version 1.0
  6. * @since 1.0
  7. */
  8. public class User {
  9. }

第四步:编写spring的配置文件:beans.xml。该文件放在类的根路径下。
image.png
上图是使用IDEA工具自带的spring配置文件的模板进行创建。
配置文件中进行bean的配置。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userBean" class="com.powernode.spring6.bean.User"/>
  6. </beans>

bean的id和class属性:

  • id属性:代表对象的唯一标识。可以看做一个人的身份证号。
  • class属性:用来指定要创建的java对象的类名,这个类名必须是全限定类名(带包名)。

第五步:编写测试程序

  1. package com.powernode.spring6.test;
  2. import org.junit.Test;
  3. import org.springframework.context.ApplicationContext;
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;
  5. public class Spring6Test {
  6. @Test
  7. public void testFirst(){
  8. // 初始化Spring容器上下文(解析beans.xml文件,创建所有的bean对象)
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");
  10. // 根据id获取bean对象
  11. Object userBean = applicationContext.getBean("userBean");
  12. System.out.println(userBean);
  13. }
  14. }

第七步:运行测试程序
image.png

3.4 第一个Spring程序详细剖析

  1. <bean id="userBean" class="com.powernode.spring6.bean.User"/>
  1. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");
  2. Object userBean = applicationContext.getBean("userBean");
  1. bean标签的id属性可以重复吗? ```java package com.powernode.spring6.bean;

/**

  • @author 动力节点
  • @version 1.0
  • @className Vip
  • @since 1.0 **/ public class Vip { }
  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="userBean" class="com.powernode.spring6.bean.User"/>
  7. <bean id="userBean" class="com.powernode.spring6.bean.Vip"/>
  8. </beans>

运行测试程序:
image.png
通过测试得出:在spring的配置文件中id是不能重名。

  1. 底层是怎么创建对象的,是通过反射机制调用无参数构造方法吗? ```java package com.powernode.spring6.bean;

/**

  • bean,封装用户信息。
  • @author 动力节点
  • @version 1.0
  • @since 1.0 */ public class User { public User() {
    1. System.out.println("User的无参数构造方法执行");
    } }
  1. User类中添加无参数构造方法,如上。<br />运行测试程序:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1663829191565-09e55ce2-e426-4f34-a49d-1ecde4c66dd2.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_17%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%238e7a62&clientId=u27d5a243-6a1b-4&from=paste&height=148&id=u9b0114c5&originHeight=148&originWidth=586&originalType=binary&ratio=1&rotation=0&showTitle=false&size=18734&status=done&style=shadow&taskId=ud734e4b2-6179-489d-8e78-985da9b3d0e&title=&width=586)<br />**通过测试得知:创建对象时确实调用了无参数构造方法。**<br />如果提供一个有参数构造方法,不提供无参数构造方法会怎样呢?
  2. ```java
  3. package com.powernode.spring6.bean;
  4. /**
  5. * bean,封装用户信息。
  6. * @author 动力节点
  7. * @version 1.0
  8. * @since 1.0
  9. */
  10. public class User {
  11. /*public User() {
  12. System.out.println("User的无参数构造方法执行");
  13. }*/
  14. public User(String name){
  15. System.out.println("User的有参数构造方法执行");
  16. }
  17. }

运行测试程序:
image.png
通过测试得知:spring是通过调用类的无参数构造方法来创建对象的,所以要想让spring给你创建对象,必须保证无参数构造方法是存在的。
Spring是如何创建对象的呢?原理是什么?

  1. // dom4j解析beans.xml文件,从中获取class的全限定类名
  2. // 通过反射机制调用无参数构造方法创建对象
  3. Class clazz = Class.forName("com.powernode.spring6.bean.User");
  4. Object obj = clazz.newInstance();
  1. 把创建好的对象存储到一个什么样的数据结构当中了呢?

image.png

  1. spring配置文件的名字必须叫做beans.xml吗?

    1. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml");

    通过以上的java代码可以看出,这个spring配置文件名字是我们负责提供的,显然spring配置文件的名字是随意的。

  2. 像这样的beans.xml文件可以有多个吗?

再创建一个spring配置文件,起名:spring.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="vipBean" class="com.powernode.spring6.bean.Vip"/>
  6. </beans>
  1. package com.powernode.spring6.test;
  2. import org.junit.Test;
  3. import org.springframework.context.ApplicationContext;
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;
  5. public class Spring6Test {
  6. @Test
  7. public void testFirst(){
  8. // 初始化Spring容器上下文(解析beans.xml文件,创建所有的bean对象)
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml","spring.xml");
  10. // 根据id获取bean对象
  11. Object userBean = applicationContext.getBean("userBean");
  12. Object vipBean = applicationContext.getBean("vipBean");
  13. System.out.println(userBean);
  14. System.out.println(vipBean);
  15. }
  16. }

运行测试程序:
image.png
通过测试得知,spring的配置文件可以有多个,在ClassPathXmlApplicationContext构造方法的参数上传递文件路径即可。这是为什么呢?通过源码可以看到:
image.png

  1. 在配置文件中配置的类必须是自定义的吗,可以使用JDK中的类吗,例如:java.util.Date?

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    5. <bean id="userBean" class="com.powernode.spring6.bean.User"/>
    6. <!--<bean id="userBean" class="com.powernode.spring6.bean.Vip"/>-->
    7. <bean id="dateBean" class="java.util.Date"/>
    8. </beans>

    ```java package com.powernode.spring6.test;

import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Spring6Test {

  1. @Test
  2. public void testFirst(){
  3. // 初始化Spring容器上下文(解析beans.xml文件,创建所有的bean对象)
  4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("beans.xml","spring.xml");
  5. // 根据id获取bean对象
  6. Object userBean = applicationContext.getBean("userBean");
  7. Object vipBean = applicationContext.getBean("vipBean");
  8. Object dateBean = applicationContext.getBean("dateBean");
  9. System.out.println(userBean);
  10. System.out.println(vipBean);
  11. System.out.println(dateBean);
  12. }

}

  1. 运行测试程序:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1663830975135-0fce3972-3b4e-4f54-878a-a4058f8d6ca6.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_17%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%2334302f&clientId=u27d5a243-6a1b-4&from=paste&height=232&id=u68dea7f3&originHeight=232&originWidth=614&originalType=binary&ratio=1&rotation=0&showTitle=false&size=27994&status=done&style=shadow&taskId=ue2e70c33-0fdc-49dc-a448-4a60eb89c63&title=&width=614)<br />通过测试得知,在spring配置文件中配置的bean可以任意类,只要这个类不是抽象的,并且提供了无参数构造方法。
  2. 7. **getBean()方法调用时,如果指定的id不存在会怎样?**
  3. ![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1663831841228-eda809d8-3e51-4b08-913c-76ff78efae1f.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_40%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%232d2c2b&clientId=u9fbc0c64-ef9a-4&from=paste&height=460&id=u86ce6204&originHeight=460&originWidth=1390&originalType=binary&ratio=1&rotation=0&showTitle=false&size=71757&status=done&style=shadow&taskId=u30f1bcc0-9d03-4840-8ec9-4598f42cc32&title=&width=1390)<br />运行测试程序:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1663831885196-43acddcf-29e5-46b7-814c-33c4dfe78386.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_36%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23342e2d&clientId=u9fbc0c64-ef9a-4&from=paste&height=265&id=ued5a970f&originHeight=265&originWidth=1264&originalType=binary&ratio=1&rotation=0&showTitle=false&size=42498&status=done&style=shadow&taskId=u01e3eb2b-275d-4b46-a01e-899fb31d8f7&title=&width=1264)<br />通过测试得知,当id不存在的时候,会出现异常。
  4. 8. **getBean()方法返回的类型是Object,如果访问子类的特有属性和方法时,还需要向下转型,有其它办法可以解决这个问题吗?**
  5. ```java
  6. User user = applicationContext.getBean("userBean", User.class);
  1. ClassPathXmlApplicationContext是从类路径中加载配置文件,如果没有在类路径当中,又应该如何加载配置文件呢?

image.png

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="vipBean2" class="com.powernode.spring6.bean.Vip"/>
  6. </beans>
  1. ApplicationContext applicationContext2 = new FileSystemXmlApplicationContext("d:/spring6.xml");
  2. Vip vip = applicationContext2.getBean("vipBean2", Vip.class);
  3. System.out.println(vip);

没有在类路径中的话,需要使用FileSystemXmlApplicationContext类进行加载配置文件。
这种方式较少用。一般都是将配置文件放到类路径当中,这样可移植性更强。

  1. ApplicationContext的超级父接口BeanFactory。
    1. BeanFactory beanFactory = new ClassPathXmlApplicationContext("spring.xml");
    2. Object vipBean = beanFactory.getBean("vipBean");
    3. System.out.println(vipBean);
    BeanFactory是Spring容器的超级接口。ApplicationContext是BeanFactory的子接口。

    3.5 Spring6启用Log4j2日志框架

    从Spring5之后,Spring框架支持集成的日志框架是Log4j2.如何启用日志框架:
    第一步:引入Log4j2的依赖
    1. <!--log4j2的依赖-->
    2. <dependency>
    3. <groupId>org.apache.logging.log4j</groupId>
    4. <artifactId>log4j-core</artifactId>
    5. <version>2.19.0</version>
    6. </dependency>
    7. <dependency>
    8. <groupId>org.apache.logging.log4j</groupId>
    9. <artifactId>log4j-slf4j2-impl</artifactId>
    10. <version>2.19.0</version>
    11. </dependency>
    第二步:在类的根路径下提供log4j2.xml配置文件(文件名固定为:log4j2.xml,文件必须放到类根路径下。) ```xml <?xml version=”1.0” encoding=”UTF-8”?>
  1. <loggers>
  2. <!--
  3. level指定日志级别,从低到高的优先级:
  4. ALL < TRACE < DEBUG < INFO < WARN < ERROR < FATAL < OFF
  5. -->
  6. <root level="DEBUG">
  7. <appender-ref ref="spring6log"/>
  8. </root>
  9. </loggers>
  10. <appenders>
  11. <!--输出日志信息到控制台-->
  12. <console name="spring6log" target="SYSTEM_OUT">
  13. <!--控制日志输出的格式-->
  14. <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss SSS} [%t] %-3level %logger{1024} - %msg%n"/>
  15. </console>
  16. </appenders>

  1. 第三步:使用日志框架
  2. ```java
  3. Logger logger = LoggerFactory.getLogger(FirstSpringTest.class);
  4. logger.info("我是一条日志消息");

四、Spring对IoC的实现

4.1 IoC 控制反转

  • 控制反转是一种思想。
  • 控制反转是为了降低程序耦合度,提高程序扩展力,达到OCP原则,达到DIP原则。
  • 控制反转,反转的是什么?
    • 将对象的创建权利交出去,交给第三方容器负责。
    • 将对象和对象之间关系的维护权交出去,交给第三方容器负责。
  • 控制反转这种思想如何实现呢?

    • DI(Dependency Injection):依赖注入

      4.2 依赖注入

      依赖注入实现了控制反转的思想。
      Spring通过依赖注入的方式来完成Bean管理的。
      Bean管理说的是:Bean对象的创建,以及Bean对象中属性的赋值(或者叫做Bean对象之间关系的维护)。
      依赖注入:
  • 依赖指的是对象和对象之间的关联关系。

  • 注入指的是一种数据传递行为,通过注入行为来让对象和对象产生关系。

依赖注入常见的实现方式包括两种:

  • 第一种:set注入
  • 第二种:构造注入

新建模块:spring6-002-dependency-injection

4.2.1 set注入

set注入,基于set方法实现的,底层会通过反射机制调用属性对应的set方法然后给属性赋值。这种方式要求属性必须对外提供set方法。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.powernode</groupId>
  7. <artifactId>spring6-002-dependency-injection</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <repositories>
  11. <repository>
  12. <id>repository.spring.milestone</id>
  13. <name>Spring Milestone Repository</name>
  14. <url>https://repo.spring.io/milestone</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-context</artifactId>
  21. <version>6.0.0-M2</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.13.2</version>
  27. <scope>test</scope>
  28. </dependency>
  29. </dependencies>
  30. <properties>
  31. <maven.compiler.source>17</maven.compiler.source>
  32. <maven.compiler.target>17</maven.compiler.target>
  33. </properties>
  34. </project>
  1. package com.powernode.spring6.dao;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className UserDao
  6. * @since 1.0
  7. **/
  8. public class UserDao {
  9. public void insert(){
  10. System.out.println("正在保存用户数据。");
  11. }
  12. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className UserService
  7. * @since 1.0
  8. **/
  9. public class UserService {
  10. private UserDao userDao;
  11. // 使用set方式注入,必须提供set方法。
  12. // 反射机制要调用这个方法给属性赋值的。
  13. public void setUserDao(UserDao userDao) {
  14. this.userDao = userDao;
  15. }
  16. public void save(){
  17. userDao.insert();
  18. }
  19. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>
  6. <bean id="userServiceBean" class="com.powernode.spring6.service.UserService">
  7. <property name="userDao" ref="userDaoBean"/>
  8. </bean>
  9. </beans>
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.service.UserService;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. /**
  7. * @author 动力节点
  8. * @version 1.0
  9. * @className DITest
  10. * @since 1.0
  11. **/
  12. public class DITest {
  13. @Test
  14. public void testSetDI(){
  15. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  16. UserService userService = applicationContext.getBean("userServiceBean", UserService.class);
  17. userService.save();
  18. }
  19. }

运行结果:
image.png
重点内容是,什么原理:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>
  6. <bean id="userServiceBean" class="com.powernode.spring6.service.UserService">
  7. <property name="userDao" ref="userDaoBean"/>
  8. </bean>
  9. </beans>

实现原理:
通过property标签获取到属性名:userDao
通过属性名推断出set方法名:setUserDao
通过反射机制调用setUserDao()方法给属性赋值
property标签的name是属性名。
property标签的ref是要注入的bean对象的id。(通过ref属性来完成bean的装配,这是bean最简单的一种装配方式。装配指的是:创建系统组件之间关联的动作)
可以把set方法注释掉,再测试一下
image.png
通过测试得知,底层实际上调用了setUserDao()方法。所以需要确保这个方法的存在。
我们现在把属性名修改一下,但方法名还是setUserDao(),我们来测试一下:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className UserService
  7. * @since 1.0
  8. **/
  9. public class UserService {
  10. private UserDao aaa;
  11. // 使用set方式注入,必须提供set方法。
  12. // 反射机制要调用这个方法给属性赋值的。
  13. public void setUserDao(UserDao userDao) {
  14. this.aaa = userDao;
  15. }
  16. public void save(){
  17. aaa.insert();
  18. }
  19. }

运行测试程序:
image.png
通过测试看到程序仍然可以正常执行,说明property标签的name是:setUserDao()方法名演变得到的。演变的规律是:

  • setUsername() 演变为 username
  • setPassword() 演变为 password
  • setUserDao() 演变为 userDao
  • setUserService() 演变为 userService

另外,对于property标签来说,ref属性也可以采用标签的方式,但使用ref属性是多数的:

  1. <bean id="userServiceBean" class="com.powernode.spring6.service.UserService">
  2. <property name="userDao">
  3. <ref bean="userDaoBean"/>
  4. </property>
  5. </bean>

总结:set注入的核心实现原理:通过反射机制调用set方法来给属性赋值,让两个对象之间产生关系。

4.2.2 构造注入

核心原理:通过调用构造方法来给属性赋值。

  1. package com.powernode.spring6.dao;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className OrderDao
  6. * @since 1.0
  7. **/
  8. public class OrderDao {
  9. public void deleteById(){
  10. System.out.println("正在删除订单。。。");
  11. }
  12. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.OrderDao;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className OrderService
  7. * @since 1.0
  8. **/
  9. public class OrderService {
  10. private OrderDao orderDao;
  11. // 通过反射机制调用构造方法给属性赋值
  12. public OrderService(OrderDao orderDao) {
  13. this.orderDao = orderDao;
  14. }
  15. public void delete(){
  16. orderDao.deleteById();
  17. }
  18. }
  1. <bean id="orderDaoBean" class="com.powernode.spring6.dao.OrderDao"/>
  2. <bean id="orderServiceBean" class="com.powernode.spring6.service.OrderService">
  3. <!--index="0"表示构造方法的第一个参数,将orderDaoBean对象传递给构造方法的第一个参数。-->
  4. <constructor-arg index="0" ref="orderDaoBean"/>
  5. </bean>
  1. @Test
  2. public void testConstructorDI(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  4. OrderService orderServiceBean = applicationContext.getBean("orderServiceBean", OrderService.class);
  5. orderServiceBean.delete();
  6. }

运行结果如下:
image.png
如果构造方法有两个参数:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.OrderDao;
  3. import com.powernode.spring6.dao.UserDao;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className OrderService
  8. * @since 1.0
  9. **/
  10. public class OrderService {
  11. private OrderDao orderDao;
  12. private UserDao userDao;
  13. // 通过反射机制调用构造方法给属性赋值
  14. public OrderService(OrderDao orderDao, UserDao userDao) {
  15. this.orderDao = orderDao;
  16. this.userDao = userDao;
  17. }
  18. public void delete(){
  19. orderDao.deleteById();
  20. userDao.insert();
  21. }
  22. }

spring配置文件:

  1. <bean id="orderDaoBean" class="com.powernode.spring6.dao.OrderDao"/>
  2. <bean id="orderServiceBean" class="com.powernode.spring6.service.OrderService">
  3. <!--第一个参数下标是0-->
  4. <constructor-arg index="0" ref="orderDaoBean"/>
  5. <!--第二个参数下标是1-->
  6. <constructor-arg index="1" ref="userDaoBean"/>
  7. </bean>
  8. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>

执行测试程序:
image.png
不使用参数下标,使用参数的名字可以吗?

  1. <bean id="orderDaoBean" class="com.powernode.spring6.dao.OrderDao"/>
  2. <bean id="orderServiceBean" class="com.powernode.spring6.service.OrderService">
  3. <!--这里使用了构造方法上参数的名字-->
  4. <constructor-arg name="orderDao" ref="orderDaoBean"/>
  5. <constructor-arg name="userDao" ref="userDaoBean"/>
  6. </bean>
  7. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>

执行测试程序:
image.png
不指定参数下标,不指定参数名字,可以吗?

  1. <bean id="orderDaoBean" class="com.powernode.spring6.dao.OrderDao"/>
  2. <bean id="orderServiceBean" class="com.powernode.spring6.service.OrderService">
  3. <!--没有指定下标,也没有指定参数名字-->
  4. <constructor-arg ref="orderDaoBean"/>
  5. <constructor-arg ref="userDaoBean"/>
  6. </bean>
  7. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>

执行测试程序:
image.png
配置文件中构造方法参数的类型顺序和构造方法参数的类型顺序不一致呢?

  1. <bean id="orderDaoBean" class="com.powernode.spring6.dao.OrderDao"/>
  2. <bean id="orderServiceBean" class="com.powernode.spring6.service.OrderService">
  3. <!--顺序已经和构造方法的参数顺序不同了-->
  4. <constructor-arg ref="userDaoBean"/>
  5. <constructor-arg ref="orderDaoBean"/>
  6. </bean>
  7. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>

执行测试程序:
image.png
通过测试得知,通过构造方法注入的时候:

  • 可以通过下标
  • 可以通过参数名
  • 也可以不指定下标和参数名,可以类型自动推断。

Spring在装配方面做的还是比较健壮的。

4.3 set注入专题

4.3.1 注入外部Bean

在之前4.2.1中使用的案例就是注入外部Bean的方式。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userDaoBean" class="com.powernode.spring6.dao.UserDao"/>
  6. <bean id="userServiceBean" class="com.powernode.spring6.service.UserService">
  7. <property name="userDao" ref="userDaoBean"/>
  8. </bean>
  9. </beans>

外部Bean的特点:bean定义到外面,在property标签中使用ref属性进行注入。通常这种方式是常用。

4.3.2 注入内部Bean

内部Bean的方式:在bean标签中嵌套bean标签。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userServiceBean" class="com.powernode.spring6.service.UserService">
  6. <property name="userDao">
  7. <bean class="com.powernode.spring6.dao.UserDao"/>
  8. </property>
  9. </bean>
  10. </beans>
  1. @Test
  2. public void testInnerBean(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-inner-bean.xml");
  4. UserService userService = applicationContext.getBean("userServiceBean", UserService.class);
  5. userService.save();
  6. }

执行测试程序:
image.png
这种方式作为了解。

4.3.3 注入简单类型

我们之前在进行注入的时候,对象的属性是另一个对象。

  1. public class UserService{
  2. private UserDao userDao;
  3. public void setUserDao(UserDao userDao){
  4. this.userDao = userDao;
  5. }
  6. }

那如果对象的属性是int类型呢?

  1. public class User{
  2. private int age;
  3. public void setAge(int age){
  4. this.age = age;
  5. }
  6. }

可以通过set注入的方式给该属性赋值吗?

  • 当然可以。因为只要能够调用set方法就可以给属性赋值。

编写程序给一个User对象的age属性赋值20:
第一步:定义User类,提供age属性,提供age属性的setter方法。

  1. package com.powernode.spring6.beans;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className User
  6. * @since 1.0
  7. **/
  8. public class User {
  9. private int age;
  10. public void setAge(int age) {
  11. this.age = age;
  12. }
  13. @Override
  14. public String toString() {
  15. return "User{" +
  16. "age=" + age +
  17. '}';
  18. }
  19. }

第二步:编写spring配置文件:spring-simple-type.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userBean" class="com.powernode.spring6.beans.User">
  6. <!--如果像这种int类型的属性,我们称为简单类型,这种简单类型在注入的时候要使用value属性,不能使用ref-->
  7. <!--<property name="age" value="20"/>-->
  8. <property name="age">
  9. <value>20</value>
  10. </property>
  11. </bean>
  12. </beans>

第三步:编写测试程序

  1. @Test
  2. public void testSimpleType(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-simple-type.xml");
  4. User user = applicationContext.getBean("userBean", User.class);
  5. System.out.println(user);
  6. }

第四步:运行测试程序
1664444974497(1).png
需要特别注意:如果给简单类型赋值,使用value属性或value标签。而不是ref。
简单类型包括哪些呢?可以通过Spring的源码来分析一下:BeanUtils类

  1. public class BeanUtils{
  2. //.......
  3. /**
  4. * Check if the given type represents a "simple" property: a simple value
  5. * type or an array of simple value types.
  6. * <p>See {@link #isSimpleValueType(Class)} for the definition of <em>simple
  7. * value type</em>.
  8. * <p>Used to determine properties to check for a "simple" dependency-check.
  9. * @param type the type to check
  10. * @return whether the given type represents a "simple" property
  11. * @see org.springframework.beans.factory.support.RootBeanDefinition#DEPENDENCY_CHECK_SIMPLE
  12. * @see org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory#checkDependencies
  13. * @see #isSimpleValueType(Class)
  14. */
  15. public static boolean isSimpleProperty(Class<?> type) {
  16. Assert.notNull(type, "'type' must not be null");
  17. return isSimpleValueType(type) || (type.isArray() && isSimpleValueType(type.getComponentType()));
  18. }
  19. /**
  20. * Check if the given type represents a "simple" value type: a primitive or
  21. * primitive wrapper, an enum, a String or other CharSequence, a Number, a
  22. * Date, a Temporal, a URI, a URL, a Locale, or a Class.
  23. * <p>{@code Void} and {@code void} are not considered simple value types.
  24. * @param type the type to check
  25. * @return whether the given type represents a "simple" value type
  26. * @see #isSimpleProperty(Class)
  27. */
  28. public static boolean isSimpleValueType(Class<?> type) {
  29. return (Void.class != type && void.class != type &&
  30. (ClassUtils.isPrimitiveOrWrapper(type) ||
  31. Enum.class.isAssignableFrom(type) ||
  32. CharSequence.class.isAssignableFrom(type) ||
  33. Number.class.isAssignableFrom(type) ||
  34. Date.class.isAssignableFrom(type) ||
  35. Temporal.class.isAssignableFrom(type) ||
  36. URI.class == type ||
  37. URL.class == type ||
  38. Locale.class == type ||
  39. Class.class == type));
  40. }
  41. //........
  42. }

通过源码分析得知,简单类型包括:

  • 基本数据类型
  • 基本数据类型对应的包装类
  • String或其他的CharSequence子类
  • Number子类
  • Date子类
  • Enum子类
  • URI
  • URL
  • Temporal子类
  • Locale
  • Class
  • 另外还包括以上简单值类型对应的数组类型。

经典案例:给数据源的属性注入值:
假设我们现在要自己手写一个数据源,我们都知道所有的数据源都要实现javax.sql.DataSource接口,并且数据源中应该有连接数据库的信息,例如:driver、url、username、password等。

  1. package com.powernode.spring6.beans;
  2. import javax.sql.DataSource;
  3. import java.io.PrintWriter;
  4. import java.sql.Connection;
  5. import java.sql.SQLException;
  6. import java.sql.SQLFeatureNotSupportedException;
  7. import java.util.logging.Logger;
  8. /**
  9. * @author 动力节点
  10. * @version 1.0
  11. * @className MyDataSource
  12. * @since 1.0
  13. **/
  14. public class MyDataSource implements DataSource {
  15. private String driver;
  16. private String url;
  17. private String username;
  18. private String password;
  19. public void setDriver(String driver) {
  20. this.driver = driver;
  21. }
  22. public void setUrl(String url) {
  23. this.url = url;
  24. }
  25. public void setUsername(String username) {
  26. this.username = username;
  27. }
  28. public void setPassword(String password) {
  29. this.password = password;
  30. }
  31. @Override
  32. public String toString() {
  33. return "MyDataSource{" +
  34. "driver='" + driver + '\'' +
  35. ", url='" + url + '\'' +
  36. ", username='" + username + '\'' +
  37. ", password='" + password + '\'' +
  38. '}';
  39. }
  40. @Override
  41. public Connection getConnection() throws SQLException {
  42. return null;
  43. }
  44. @Override
  45. public Connection getConnection(String username, String password) throws SQLException {
  46. return null;
  47. }
  48. @Override
  49. public PrintWriter getLogWriter() throws SQLException {
  50. return null;
  51. }
  52. @Override
  53. public void setLogWriter(PrintWriter out) throws SQLException {
  54. }
  55. @Override
  56. public void setLoginTimeout(int seconds) throws SQLException {
  57. }
  58. @Override
  59. public int getLoginTimeout() throws SQLException {
  60. return 0;
  61. }
  62. @Override
  63. public Logger getParentLogger() throws SQLFeatureNotSupportedException {
  64. return null;
  65. }
  66. @Override
  67. public <T> T unwrap(Class<T> iface) throws SQLException {
  68. return null;
  69. }
  70. @Override
  71. public boolean isWrapperFor(Class<?> iface) throws SQLException {
  72. return false;
  73. }
  74. }

我们给driver、url、username、password四个属性分别提供了setter方法,我们可以使用spring的依赖注入完成数据源对象的创建和属性的赋值吗?看配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="dataSource" class="com.powernode.spring6.beans.MyDataSource">
  6. <property name="driver" value="com.mysql.cj.jdbc.Driver"/>
  7. <property name="url" value="jdbc:mysql://localhost:3306/spring"/>
  8. <property name="username" value="root"/>
  9. <property name="password" value="123456"/>
  10. </bean>
  11. </beans>

测试程序:

  1. @Test
  2. public void testDataSource(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-datasource.xml");
  4. MyDataSource dataSource = applicationContext.getBean("dataSource", MyDataSource.class);
  5. System.out.println(dataSource);
  6. }

执行测试程序:
image.png
你学会了吗?
接下来,我们编写一个程序,把所有的简单类型全部测试一遍:
编写一个类A:

  1. package com.powernode.spring6.beans;
  2. import java.net.URI;
  3. import java.net.URL;
  4. import java.time.LocalDate;
  5. import java.util.Date;
  6. import java.util.Locale;
  7. /**
  8. * @author 动力节点
  9. * @version 1.0
  10. * @className A
  11. * @since 1.0
  12. **/
  13. public class A {
  14. private byte b;
  15. private short s;
  16. private int i;
  17. private long l;
  18. private float f;
  19. private double d;
  20. private boolean flag;
  21. private char c;
  22. private Byte b1;
  23. private Short s1;
  24. private Integer i1;
  25. private Long l1;
  26. private Float f1;
  27. private Double d1;
  28. private Boolean flag1;
  29. private Character c1;
  30. private String str;
  31. private Date date;
  32. private Season season;
  33. private URI uri;
  34. private URL url;
  35. private LocalDate localDate;
  36. private Locale locale;
  37. private Class clazz;
  38. // 生成setter方法
  39. // 生成toString方法
  40. }
  41. enum Season {
  42. SPRING, SUMMER, AUTUMN, WINTER
  43. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="a" class="com.powernode.spring6.beans.A">
  6. <property name="b" value="1"/>
  7. <property name="s" value="1"/>
  8. <property name="i" value="1"/>
  9. <property name="l" value="1"/>
  10. <property name="f" value="1"/>
  11. <property name="d" value="1"/>
  12. <property name="flag" value="false"/>
  13. <property name="c" value="a"/>
  14. <property name="b1" value="2"/>
  15. <property name="s1" value="2"/>
  16. <property name="i1" value="2"/>
  17. <property name="l1" value="2"/>
  18. <property name="f1" value="2"/>
  19. <property name="d1" value="2"/>
  20. <property name="flag1" value="true"/>
  21. <property name="c1" value="a"/>
  22. <property name="str" value="zhangsan"/>
  23. <!--注意:value后面的日期字符串格式不能随便写,必须是Date对象toString()方法执行的结果。-->
  24. <!--如果想使用其他格式的日期字符串,就需要进行特殊处理了。具体怎么处理,可以看后面的课程!!!!-->
  25. <property name="date" value="Fri Sep 30 15:26:38 CST 2022"/>
  26. <property name="season" value="WINTER"/>
  27. <property name="uri" value="/save.do"/>
  28. <!--spring6之后,会自动检查url是否有效,如果无效会报错。-->
  29. <property name="url" value="http://www.baidu.com"/>
  30. <property name="localDate" value="EPOCH"/>
  31. <!--java.util.Locale 主要在软件的本地化时使用。它本身没有什么功能,更多的是作为一个参数辅助其他方法完成输出的本地化。-->
  32. <property name="locale" value="CHINESE"/>
  33. <property name="clazz" value="java.lang.String"/>
  34. </bean>
  35. </beans>

编写测试程序:

  1. @Test
  2. public void testAllSimpleType(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-all-simple-type.xml");
  4. A a = applicationContext.getBean("a", A.class);
  5. System.out.println(a);
  6. }

执行结果如下:
image.png
需要注意的是:

  • 如果把Date当做简单类型的话,日期字符串格式不能随便写。格式必须符合Date的toString()方法格式。显然这就比较鸡肋了。如果我们提供一个这样的日期字符串:2010-10-11,在这里是无法赋值给Date类型的属性的。
  • spring6之后,当注入的是URL,那么这个url字符串是会进行有效性检测的。如果是一个存在的url,那就没问题。如果不存在则报错。

    4.3.4 级联属性赋值(了解)

    ```java package com.powernode.spring6.beans;

/**

  • @author 动力节点
  • @version 1.0
  • @className Clazz
  • @since 1.0 **/ public class Clazz { private String name;

    public Clazz() { }

    public Clazz(String name) {

    1. this.name = name;

    }

    public String getName() {

    1. return name;

    }

    public void setName(String name) {

    1. this.name = name;

    }

    @Override public String toString() {

    1. return "Clazz{" +
    2. "name='" + name + '\'' +
    3. '}';

    } }

  1. ```java
  2. package com.powernode.spring6.beans;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Student
  7. * @since 1.0
  8. **/
  9. public class Student {
  10. private String name;
  11. private Clazz clazz;
  12. public Student() {
  13. }
  14. public Student(String name, Clazz clazz) {
  15. this.name = name;
  16. this.clazz = clazz;
  17. }
  18. public void setName(String name) {
  19. this.name = name;
  20. }
  21. public void setClazz(Clazz clazz) {
  22. this.clazz = clazz;
  23. }
  24. public Clazz getClazz() {
  25. return clazz;
  26. }
  27. @Override
  28. public String toString() {
  29. return "Student{" +
  30. "name='" + name + '\'' +
  31. ", clazz=" + clazz +
  32. '}';
  33. }
  34. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="clazzBean" class="com.powernode.spring6.beans.Clazz"/>
  6. <bean id="student" class="com.powernode.spring6.beans.Student">
  7. <property name="name" value="张三"/>
  8. <!--要点1:以下两行配置的顺序不能颠倒-->
  9. <property name="clazz" ref="clazzBean"/>
  10. <!--要点2:clazz属性必须有getter方法-->
  11. <property name="clazz.name" value="高三一班"/>
  12. </bean>
  13. </beans>
  1. @Test
  2. public void testCascade(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-cascade.xml");
  4. Student student = applicationContext.getBean("student", Student.class);
  5. System.out.println(student);
  6. }

运行结果:
image.png
要点:

  • 在spring配置文件中,如上,注意顺序。
  • 在spring配置文件中,clazz属性必须提供getter方法。

    4.3.5 注入数组

    当数组中的元素是简单类型: ```java package com.powernode.spring6.beans;

import java.util.Arrays;

public class Person { private String[] favariteFoods;

  1. public void setFavariteFoods(String[] favariteFoods) {
  2. this.favariteFoods = favariteFoods;
  3. }
  4. @Override
  5. public String toString() {
  6. return "Person{" +
  7. "favariteFoods=" + Arrays.toString(favariteFoods) +
  8. '}';
  9. }

}

  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="person" class="com.powernode.spring6.beans.Person">
  7. <property name="favariteFoods">
  8. <array>
  9. <value>鸡排</value>
  10. <value>汉堡</value>
  11. <value>鹅肝</value>
  12. </array>
  13. </property>
  14. </bean>
  15. </beans>
  1. @Test
  2. public void testArraySimple(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-array-simple.xml");
  4. Person person = applicationContext.getBean("person", Person.class);
  5. System.out.println(person);
  6. }

当数组中的元素是非简单类型:一个订单中包含多个商品。

  1. package com.powernode.spring6.beans;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Goods
  6. * @since 1.0
  7. **/
  8. public class Goods {
  9. private String name;
  10. public Goods() {
  11. }
  12. public Goods(String name) {
  13. this.name = name;
  14. }
  15. public String getName() {
  16. return name;
  17. }
  18. public void setName(String name) {
  19. this.name = name;
  20. }
  21. @Override
  22. public String toString() {
  23. return "Goods{" +
  24. "name='" + name + '\'' +
  25. '}';
  26. }
  27. }
  1. package com.powernode.spring6.beans;
  2. import java.util.Arrays;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Order
  7. * @since 1.0
  8. **/
  9. public class Order {
  10. // 一个订单中有多个商品
  11. private Goods[] goods;
  12. public Order() {
  13. }
  14. public Order(Goods[] goods) {
  15. this.goods = goods;
  16. }
  17. public void setGoods(Goods[] goods) {
  18. this.goods = goods;
  19. }
  20. @Override
  21. public String toString() {
  22. return "Order{" +
  23. "goods=" + Arrays.toString(goods) +
  24. '}';
  25. }
  26. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="goods1" class="com.powernode.spring6.beans.Goods">
  6. <property name="name" value="西瓜"/>
  7. </bean>
  8. <bean id="goods2" class="com.powernode.spring6.beans.Goods">
  9. <property name="name" value="苹果"/>
  10. </bean>
  11. <bean id="order" class="com.powernode.spring6.beans.Order">
  12. <property name="goods">
  13. <array>
  14. <!--这里使用ref标签即可-->
  15. <ref bean="goods1"/>
  16. <ref bean="goods2"/>
  17. </array>
  18. </property>
  19. </bean>
  20. </beans>

测试程序:

  1. @Test
  2. public void testArray(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-array.xml");
  4. Order order = applicationContext.getBean("order", Order.class);
  5. System.out.println(order);
  6. }

执行结果:
image.png
要点:

  • 如果数组中是简单类型,使用value标签。
  • 如果数组中是非简单类型,使用ref标签。

    4.3.6 注入List集合

    List集合:有序可重复 ```java package com.powernode.spring6.beans;

import java.util.List;

/**

  • @author 动力节点
  • @version 1.0
  • @className People
  • @since 1.0 **/ public class People { // 一个人有多个名字 private List names;

    public void setNames(List names) {

    1. this.names = names;

    }

    @Override public String toString() {

    1. return "People{" +
    2. "names=" + names +
    3. '}';

    } }

  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="peopleBean" class="com.powernode.spring6.beans.People">
  7. <property name="names">
  8. <list>
  9. <value>铁锤</value>
  10. <value>张三</value>
  11. <value>张三</value>
  12. <value>张三</value>
  13. <value>狼</value>
  14. </list>
  15. </property>
  16. </bean>
  17. </beans>
  1. @Test
  2. public void testCollection(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-collection.xml");
  4. People peopleBean = applicationContext.getBean("peopleBean", People.class);
  5. System.out.println(peopleBean);
  6. }

执行结果:
image.png
注意:注入List集合的时候使用list标签,如果List集合中是简单类型使用value标签,反之使用ref标签。

4.3.7 注入Set集合

Set集合:无序不可重复

  1. package com.powernode.spring6.beans;
  2. import java.util.List;
  3. import java.util.Set;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className People
  8. * @since 1.0
  9. **/
  10. public class People {
  11. // 一个人有多个电话
  12. private Set<String> phones;
  13. public void setPhones(Set<String> phones) {
  14. this.phones = phones;
  15. }
  16. //......
  17. @Override
  18. public String toString() {
  19. return "People{" +
  20. "phones=" + phones +
  21. ", names=" + names +
  22. '}';
  23. }
  24. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="peopleBean" class="com.powernode.spring6.beans.People">
  6. <property name="phones">
  7. <set>
  8. <!--非简单类型可以使用ref,简单类型使用value-->
  9. <value>110</value>
  10. <value>110</value>
  11. <value>120</value>
  12. <value>120</value>
  13. <value>119</value>
  14. <value>119</value>
  15. </set>
  16. </property>
  17. </bean>
  18. </beans>

执行结果:
image.png
要点:

  • 使用标签
  • set集合中元素是简单类型的使用value标签,反之使用ref标签。

    4.3.8 注入Map集合

    ```java package com.powernode.spring6.beans;

import java.util.List; import java.util.Map; import java.util.Set;

/**

  • @author 动力节点
  • @version 1.0
  • @className People
  • @since 1.0 **/ public class People { // 一个人有多个住址 private Map addrs;

    public void setAddrs(Map addrs) {

    1. this.addrs = addrs;

    }

    //……

    @Override public String toString() {

    1. return "People{" +
    2. "addrs=" + addrs +
    3. ", phones=" + phones +
    4. ", names=" + names +
    5. '}';

    }

}

  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="peopleBean" class="com.powernode.spring6.beans.People">
  7. <property name="addrs">
  8. <map>
  9. <!--如果key不是简单类型,使用 key-ref 属性-->
  10. <!--如果value不是简单类型,使用 value-ref 属性-->
  11. <entry key="1" value="北京大兴区"/>
  12. <entry key="2" value="上海浦东区"/>
  13. <entry key="3" value="深圳宝安区"/>
  14. </map>
  15. </property>
  16. </bean>
  17. </beans>

执行结果:
image.png
要点:

  • 使用标签
  • 如果key是简单类型,使用 key 属性,反之使用 key-ref 属性。
  • 如果value是简单类型,使用 value 属性,反之使用 value-ref 属性。

    4.3.9 注入Properties

    java.util.Properties继承java.util.Hashtable,所以Properties也是一个Map集合。 ```java package com.powernode.spring6.beans;

import java.util.List; import java.util.Map; import java.util.Properties; import java.util.Set;

/**

  • @author 动力节点
  • @version 1.0
  • @className People
  • @since 1.0 **/ public class People {

    private Properties properties;

    public void setProperties(Properties properties) {

    1. this.properties = properties;

    }

    //……

    @Override public String toString() {

    1. return "People{" +
    2. "properties=" + properties +
    3. ", addrs=" + addrs +
    4. ", phones=" + phones +
    5. ", names=" + names +
    6. '}';

    } }

  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="peopleBean" class="com.powernode.spring6.beans.People">
  7. <property name="properties">
  8. <props>
  9. <prop key="driver">com.mysql.cj.jdbc.Driver</prop>
  10. <prop key="url">jdbc:mysql://localhost:3306/spring</prop>
  11. <prop key="username">root</prop>
  12. <prop key="password">123456</prop>
  13. </props>
  14. </property>
  15. </bean>
  16. </beans>

执行测试程序:
image.png
要点:

  • 使用标签嵌套标签完成。

    4.3.10 注入null和空字符串

    注入空字符串使用: 或者 value=””
    注入null使用: 或者 不为该属性赋值

  • 我们先来看一下,怎么注入空字符串。 ```java package com.powernode.spring6.beans;

/**

  • @author 动力节点
  • @version 1.0
  • @className Vip
  • @since 1.0 **/ public class Vip { private String email;

    public void setEmail(String email) {

    1. this.email = email;

    }

    @Override public String toString() {

    1. return "Vip{" +
    2. "email='" + email + '\'' +
    3. '}';

    } }

  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="vipBean" class="com.powernode.spring6.beans.Vip">
  7. <!--空串的第一种方式-->
  8. <!--<property name="email" value=""/>-->
  9. <!--空串的第二种方式-->
  10. <property name="email">
  11. <value/>
  12. </property>
  13. </bean>
  14. </beans>
  1. @Test
  2. public void testNull(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-null.xml");
  4. Vip vipBean = applicationContext.getBean("vipBean", Vip.class);
  5. System.out.println(vipBean);
  6. }

执行结果:
image.png

  • 怎么注入null呢?

第一种方式:不给属性赋值

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="vipBean" class="com.powernode.spring6.beans.Vip" />
  6. </beans>

执行结果:
image.png
第二种方式:使用

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="vipBean" class="com.powernode.spring6.beans.Vip">
  6. <property name="email">
  7. <null/>
  8. </property>
  9. </bean>
  10. </beans>

执行结果:
image.png

4.3.11 注入的值中含有特殊符号

XML中有5个特殊字符,分别是:<、>、’、”、&
以上5个特殊符号在XML中会被特殊对待,会被当做XML语法的一部分进行解析,如果这些特殊符号直接出现在注入的字符串当中,会报错。
image.png
解决方案包括两种:

  • 第一种:特殊符号使用转义字符代替。
  • 第二种:将含有特殊符号的字符串放到:<![CDATA[]]> 当中。因为放在CDATA区中的数据不会被XML文件解析器解析。

5个特殊字符对应的转义字符分别是:

特殊字符 转义字符
> >
< <
'
"
& &

先使用转义字符来代替:

  1. package com.powernode.spring6.beans;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Math
  6. * @since 1.0
  7. **/
  8. public class Math {
  9. private String result;
  10. public void setResult(String result) {
  11. this.result = result;
  12. }
  13. @Override
  14. public String toString() {
  15. return "Math{" +
  16. "result='" + result + '\'' +
  17. '}';
  18. }
  19. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="mathBean" class="com.powernode.spring6.beans.Math">
  6. <property name="result" value="2 &lt; 3"/>
  7. </bean>
  8. </beans>
  1. @Test
  2. public void testSpecial(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-special.xml");
  4. Math mathBean = applicationContext.getBean("mathBean", Math.class);
  5. System.out.println(mathBean);
  6. }

执行结果:
image.png
我们再来使用CDATA方式:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="mathBean" class="com.powernode.spring6.beans.Math">
  6. <property name="result">
  7. <!--只能使用value标签-->
  8. <value><![CDATA[2 < 3]]></value>
  9. </property>
  10. </bean>
  11. </beans>

注意:使用CDATA时,不能使用value属性,只能使用value标签。
执行结果:
image.png

4.4 p命名空间注入

目的:简化配置。
使用p命名空间注入的前提条件包括两个:

  • 第一:在XML头部信息中添加p命名空间的配置信息:xmlns:p=”http://www.springframework.org/schema/p”
  • 第二:p命名空间注入是基于setter方法的,所以需要对应的属性提供setter方法。 ```java package com.powernode.spring6.beans;

/**

  • @author 动力节点
  • @version 1.0
  • @className Customer
  • @since 1.0 **/ public class Customer { private String name; private int age;

    public void setName(String name) {

    1. this.name = name;

    }

    public void setAge(int age) {

    1. this.age = age;

    }

    @Override public String toString() {

    1. return "Customer{" +
    2. "name='" + name + '\'' +
    3. ", age=" + age +
    4. '}';

    } }

  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  7. <bean id="customerBean" class="com.powernode.spring6.beans.Customer" p:name="zhangsan" p:age="20"/>
  8. </beans>
  1. @Test
  2. public void testP(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-p.xml");
  4. Customer customerBean = applicationContext.getBean("customerBean", Customer.class);
  5. System.out.println(customerBean);
  6. }

执行结果:
image.png
把setter方法去掉:
image.png
所以p命名空间实际上是对set注入的简化。

4.5 c命名空间注入

c命名空间是简化构造方法注入的。
使用c命名空间的两个前提条件:
第一:需要在xml配置文件头部添加信息:xmlns:c=”http://www.springframework.org/schema/c
第二:需要提供构造方法。

  1. package com.powernode.spring6.beans;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className MyTime
  6. * @since 1.0
  7. **/
  8. public class MyTime {
  9. private int year;
  10. private int month;
  11. private int day;
  12. public MyTime(int year, int month, int day) {
  13. this.year = year;
  14. this.month = month;
  15. this.day = day;
  16. }
  17. @Override
  18. public String toString() {
  19. return "MyTime{" +
  20. "year=" + year +
  21. ", month=" + month +
  22. ", day=" + day +
  23. '}';
  24. }
  25. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:c="http://www.springframework.org/schema/c"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <!--<bean id="myTimeBean" class="com.powernode.spring6.beans.MyTime" c:year="1970" c:month="1" c:day="1"/>-->
  7. <bean id="myTimeBean" class="com.powernode.spring6.beans.MyTime" c:_0="2008" c:_1="8" c:_2="8"/>
  8. </beans>
  1. @Test
  2. public void testC(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-c.xml");
  4. MyTime myTimeBean = applicationContext.getBean("myTimeBean", MyTime.class);
  5. System.out.println(myTimeBean);
  6. }

执行结果:
image.png
把构造方法注释掉:
image.png
所以,c命名空间是依靠构造方法的。
注意:不管是p命名空间还是c命名空间,注入的时候都可以注入简单类型以及非简单类型。

4.6 util命名空间

使用util命名空间可以让配置复用
使用util命名空间的前提是:在spring配置文件头部添加配置信息。如下:
image.png

  1. package com.powernode.spring6.beans;
  2. import java.util.Properties;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className MyDataSource1
  7. * @since 1.0
  8. **/
  9. public class MyDataSource1 {
  10. private Properties properties;
  11. public void setProperties(Properties properties) {
  12. this.properties = properties;
  13. }
  14. @Override
  15. public String toString() {
  16. return "MyDataSource1{" +
  17. "properties=" + properties +
  18. '}';
  19. }
  20. }
  1. package com.powernode.spring6.beans;
  2. import java.util.Properties;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className MyDataSource2
  7. * @since 1.0
  8. **/
  9. public class MyDataSource2 {
  10. private Properties properties;
  11. public void setProperties(Properties properties) {
  12. this.properties = properties;
  13. }
  14. @Override
  15. public String toString() {
  16. return "MyDataSource2{" +
  17. "properties=" + properties +
  18. '}';
  19. }
  20. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:util="http://www.springframework.org/schema/util"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
  7. <util:properties id="prop">
  8. <prop key="driver">com.mysql.cj.jdbc.Driver</prop>
  9. <prop key="url">jdbc:mysql://localhost:3306/spring</prop>
  10. <prop key="username">root</prop>
  11. <prop key="password">123456</prop>
  12. </util:properties>
  13. <bean id="dataSource1" class="com.powernode.spring6.beans.MyDataSource1">
  14. <property name="properties" ref="prop"/>
  15. </bean>
  16. <bean id="dataSource2" class="com.powernode.spring6.beans.MyDataSource2">
  17. <property name="properties" ref="prop"/>
  18. </bean>
  19. </beans>
  1. @Test
  2. public void testUtil(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-util.xml");
  4. MyDataSource1 dataSource1 = applicationContext.getBean("dataSource1", MyDataSource1.class);
  5. System.out.println(dataSource1);
  6. MyDataSource2 dataSource2 = applicationContext.getBean("dataSource2", MyDataSource2.class);
  7. System.out.println(dataSource2);
  8. }

执行结果:
image.png

4.7 基于XML的自动装配

Spring还可以完成自动化的注入,自动化注入又被称为自动装配。它可以根据名字进行自动装配,也可以根据类型进行自动装配。

4.7.1 根据名称自动装配

  1. package com.powernode.spring6.dao;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className UserDao
  6. * @since 1.0
  7. **/
  8. public class UserDao {
  9. public void insert(){
  10. System.out.println("正在保存用户数据。");
  11. }
  12. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className UserService
  7. * @since 1.0
  8. **/
  9. public class UserService {
  10. private UserDao aaa;
  11. // 这个set方法非常关键
  12. public void setAaa(UserDao aaa) {
  13. this.aaa = aaa;
  14. }
  15. public void save(){
  16. aaa.insert();
  17. }
  18. }

Spring的配置文件这样配置:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="userService" class="com.powernode.spring6.service.UserService" autowire="byName"/>
  6. <bean id="aaa" class="com.powernode.spring6.dao.UserDao"/>
  7. </beans>

这个配置起到关键作用:

  • UserService Bean中需要添加autowire=”byName”,表示通过名称进行装配。
  • UserService类中有一个UserDao属性,而UserDao属性的名字是aaa,对应的set方法是setAaa(),正好和UserDao Bean的id是一样的。这就是根据名称自动装配。
    1. @Test
    2. public void testAutowireByName(){
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-autowire.xml");
    4. UserService userService = applicationContext.getBean("userService", UserService.class);
    5. userService.save();
    6. }
    执行结果:
    image.png
    我们来测试一下,byName装配是和属性名有关还是和set方法名有关系: ```java package com.powernode.spring6.service;

import com.powernode.spring6.dao.UserDao;

/**

  • @author 动力节点
  • @version 1.0
  • @className UserService
  • @since 1.0 **/ public class UserService { // 这里没修改 private UserDao aaa;

    /*public void setAaa(UserDao aaa) {

    1. this.aaa = aaa;

    }*/

    // set方法名变化了 public void setDao(UserDao aaa){

    1. this.aaa = aaa;

    }

    public void save(){

    1. aaa.insert();

    } }

  1. 在执行测试程序:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1665536092171-afa2acd5-68c8-4289-95bd-ab8c0f88a66d.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_38%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23faf7f6&clientId=ubfe41891-11ea-4&from=paste&height=246&id=u31a28635&originHeight=246&originWidth=1329&originalType=binary&ratio=1&rotation=0&showTitle=false&size=37747&status=done&style=shadow&taskId=u205c3850-03b9-4bc5-96ea-2dd028afe91&title=&width=1329)<br />通过测试得知,aaa属性并没有赋值成功。也就是并没有装配成功。<br />我们将spring配置文件修改以下:
  2. ```xml
  3. <?xml version="1.0" encoding="UTF-8"?>
  4. <beans xmlns="http://www.springframework.org/schema/beans"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  7. <bean id="userService" class="com.powernode.spring6.service.UserService" autowire="byName"/>
  8. <!--这个id修改了-->
  9. <bean id="dao" class="com.powernode.spring6.dao.UserDao"/>
  10. </beans>

执行测试程序:
image.png
这说明,如果根据名称装配(byName),底层会调用set方法进行注入。
例如:setAge() 对应的名字是age,setPassword()对应的名字是password,setEmail()对应的名字是email。

4.7.2 根据类型自动装配

  1. package com.powernode.spring6.dao;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className AccountDao
  6. * @since 1.0
  7. **/
  8. public class AccountDao {
  9. public void insert(){
  10. System.out.println("正在保存账户信息");
  11. }
  12. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.AccountDao;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className AccountService
  7. * @since 1.0
  8. **/
  9. public class AccountService {
  10. private AccountDao accountDao;
  11. public void setAccountDao(AccountDao accountDao) {
  12. this.accountDao = accountDao;
  13. }
  14. public void save(){
  15. accountDao.insert();
  16. }
  17. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <!--byType表示根据类型自动装配-->
  6. <bean id="accountService" class="com.powernode.spring6.service.AccountService" autowire="byType"/>
  7. <bean class="com.powernode.spring6.dao.AccountDao"/>
  8. </beans>
  1. @Test
  2. public void testAutowireByType(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-autowire.xml");
  4. AccountService accountService = applicationContext.getBean("accountService", AccountService.class);
  5. accountService.save();
  6. }

执行结果:
image.png
我们把UserService中的set方法注释掉,再执行:
image.png
可以看到无论是byName还是byType,在装配的时候都是基于set方法的。所以set方法是必须要提供的。提供构造方法是不行的,大家可以测试一下。这里就不再赘述。
如果byType,根据类型装配时,如果配置文件中有两个类型一样的bean会出现什么问题呢?

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="accountService" class="com.powernode.spring6.service.AccountService" autowire="byType"/>
  6. <bean id="x" class="com.powernode.spring6.dao.AccountDao"/>
  7. <bean id="y" class="com.powernode.spring6.dao.AccountDao"/>
  8. </beans>

执行测试程序:
image.png
测试结果说明了,当byType进行自动装配的时候,配置文件中某种类型的Bean必须是唯一的,不能出现多个。

4.8 Spring引入外部属性配置文件

我们都知道编写数据源的时候是需要连接数据库的信息的,例如:driver url username password等信息。这些信息可以单独写到一个属性配置文件中吗,这样用户修改起来会更加的方便。当然可以。
第一步:写一个数据源类,提供相关属性。

  1. package com.powernode.spring6.beans;
  2. import javax.sql.DataSource;
  3. import java.io.PrintWriter;
  4. import java.sql.Connection;
  5. import java.sql.SQLException;
  6. import java.sql.SQLFeatureNotSupportedException;
  7. import java.util.logging.Logger;
  8. /**
  9. * @author 动力节点
  10. * @version 1.0
  11. * @className MyDataSource
  12. * @since 1.0
  13. **/
  14. public class MyDataSource implements DataSource {
  15. @Override
  16. public String toString() {
  17. return "MyDataSource{" +
  18. "driver='" + driver + '\'' +
  19. ", url='" + url + '\'' +
  20. ", username='" + username + '\'' +
  21. ", password='" + password + '\'' +
  22. '}';
  23. }
  24. private String driver;
  25. private String url;
  26. private String username;
  27. private String password;
  28. public void setDriver(String driver) {
  29. this.driver = driver;
  30. }
  31. public void setUrl(String url) {
  32. this.url = url;
  33. }
  34. public void setUsername(String username) {
  35. this.username = username;
  36. }
  37. public void setPassword(String password) {
  38. this.password = password;
  39. }
  40. //......
  41. }

第二步:在类路径下新建jdbc.properties文件,并配置信息。

  1. driver=com.mysql.cj.jdbc.Driver
  2. url=jdbc:mysql://localhost:3306/spring
  3. username=root
  4. password=root123

第三步:在spring配置文件中引入context命名空间。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. </beans>

第四步:在spring中配置使用jdbc.properties文件。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. <context:property-placeholder location="jdbc.properties"/>
  8. <bean id="dataSource" class="com.powernode.spring6.beans.MyDataSource">
  9. <property name="driver" value="${driver}"/>
  10. <property name="url" value="${url}"/>
  11. <property name="username" value="${username}"/>
  12. <property name="password" value="${password}"/>
  13. </bean>
  14. </beans>

测试程序:

  1. @Test
  2. public void testProperties(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-properties.xml");
  4. MyDataSource dataSource = applicationContext.getBean("dataSource", MyDataSource.class);
  5. System.out.println(dataSource);
  6. }

执行结果:
image.png

五、Bean的作用域

5.1 singleton

默认情况下,Spring的IoC容器创建的Bean对象是单例的。来测试一下:

  1. package com.powernode.spring6.beans;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className SpringBean
  6. * @since 1.0
  7. **/
  8. public class SpringBean {
  9. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="sb" class="com.powernode.spring6.beans.SpringBean" />
  6. </beans>
  1. @Test
  2. public void testScope(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
  4. SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
  5. System.out.println(sb1);
  6. SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
  7. System.out.println(sb2);
  8. }

执行结果:
image.png
通过测试得知:Spring的IoC容器中,默认情况下,Bean对象是单例的。
这个对象在什么时候创建的呢?可以为SpringBean提供一个无参数构造方法,测试一下,如下:

  1. package com.powernode.spring6.beans;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className SpringBean
  6. * @since 1.0
  7. **/
  8. public class SpringBean {
  9. public SpringBean() {
  10. System.out.println("SpringBean的无参数构造方法执行。");
  11. }
  12. }

将测试程序中getBean()所在行代码注释掉:

  1. @Test
  2. public void testScope(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
  4. }

执行测试程序:
image.png
通过测试得知,默认情况下,Bean对象的创建是在初始化Spring上下文的时候就完成的。

5.2 prototype

如果想让Spring的Bean对象以多例的形式存在,可以在bean标签中指定scope属性的值为:prototype,这样Spring会在每一次执行getBean()方法的时候创建Bean对象,调用几次则创建几次。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="sb" class="com.powernode.spring6.beans.SpringBean" scope="prototype" />
  6. </beans>
  1. @Test
  2. public void testScope(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
  4. SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
  5. System.out.println(sb1);
  6. SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
  7. System.out.println(sb2);
  8. }

执行结果:
image.png
我们可以把测试代码中的getBean()方法所在行代码注释掉:

  1. @Test
  2. public void testScope(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
  4. }

执行结果:
image.png
可以看到这一次在初始化Spring上下文的时候,并没有创建Bean对象。
那你可能会问:scope如果没有配置,它的默认值是什么呢?默认值是singleton,单例的。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="sb" class="com.powernode.spring6.beans.SpringBean" scope="singleton" />
  6. </beans>
  1. @Test
  2. public void testScope(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
  4. SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
  5. System.out.println(sb1);
  6. SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
  7. System.out.println(sb2);
  8. }

执行结果:
image.png
通过测试得知,没有指定scope属性时,默认是singleton单例的。

5.3 其它scope

scope属性的值不止两个,它一共包括8个选项:

  • singleton:默认的,单例。
  • prototype:原型。每调用一次getBean()方法则获取一个新的Bean对象。或每次注入的时候都是新对象。
  • request:一个请求对应一个Bean。仅限于在WEB应用中使用
  • session:一个会话对应一个Bean。仅限于在WEB应用中使用
  • global session:portlet应用中专用的。如果在Servlet的WEB应用中使用global session的话,和session一个效果。(portlet和servlet都是规范。servlet运行在servlet容器中,例如Tomcat。portlet运行在portlet容器中。)
  • application:一个应用对应一个Bean。仅限于在WEB应用中使用。
  • websocket:一个websocket生命周期对应一个Bean。仅限于在WEB应用中使用。
  • 自定义scope:很少使用。

接下来咱们自定义一个Scope,线程级别的Scope,在同一个线程中,获取的Bean都是同一个。跨线程则是不同的对象:(以下内容作为了解)

  • 第一步:自定义Scope。(实现Scope接口)
    • spring内置了线程范围的类:org.springframework.context.support.SimpleThreadScope,可以直接用。
  • 第二步:将自定义的Scope注册到Spring容器中。

    1. <bean class="org.springframework.beans.factory.config.CustomScopeConfigurer">
    2. <property name="scopes">
    3. <map>
    4. <entry key="myThread">
    5. <bean class="org.springframework.context.support.SimpleThreadScope"/>
    6. </entry>
    7. </map>
    8. </property>
    9. </bean>
  • 第三步:使用Scope。

    1. <bean id="sb" class="com.powernode.spring6.beans.SpringBean" scope="myThread" />

    编写测试程序:

    1. @Test
    2. public void testCustomScope(){
    3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-scope.xml");
    4. SpringBean sb1 = applicationContext.getBean("sb", SpringBean.class);
    5. SpringBean sb2 = applicationContext.getBean("sb", SpringBean.class);
    6. System.out.println(sb1);
    7. System.out.println(sb2);
    8. // 启动线程
    9. new Thread(new Runnable() {
    10. @Override
    11. public void run() {
    12. SpringBean a = applicationContext.getBean("sb", SpringBean.class);
    13. SpringBean b = applicationContext.getBean("sb", SpringBean.class);
    14. System.out.println(a);
    15. System.out.println(b);
    16. }
    17. }).start();
    18. }

    执行结果:
    image.png

六、GoF之工厂模式

  • 设计模式:一种可以被重复利用的解决方案。
  • GoF(Gang of Four),中文名——四人组。
  • 《Design Patterns: Elements of Reusable Object-Oriented Software》(即《设计模式》一书),1995年由 Erich Gamma、Richard Helm、Ralph Johnson 和 John Vlissides 合著。这几位作者常被称为”四人组(Gang of Four)”。
  • 该书中描述了23种设计模式。我们平常所说的设计模式就是指这23种设计模式。
  • 不过除了GoF23种设计模式之外,还有其它的设计模式,比如:JavaEE的设计模式(DAO模式、MVC模式等)。
  • GoF23种设计模式可分为三大类:
    • 创建型(5个):解决对象创建问题。
      • 单例模式
      • 工厂方法模式
      • 抽象工厂模式
      • 建造者模式
      • 原型模式
    • 结构型(7个):一些类或对象组合在一起的经典结构。
      • 代理模式
      • 装饰模式
      • 适配器模式
      • 组合模式
      • 享元模式
      • 外观模式
      • 桥接模式
    • 行为型(11个):解决类或对象之间的交互问题。
      • 策略模式
      • 模板方法模式
      • 责任链模式
      • 观察者模式
      • 迭代子模式
      • 命令模式
      • 备忘录模式
      • 状态模式
      • 访问者模式
      • 中介者模式
      • 解释器模式
  • 工厂模式是解决对象创建问题的,所以工厂模式属于创建型设计模式。这里为什么学习工厂模式呢?这是因为Spring框架底层使用了大量的工厂模式。

    6.1 工厂模式的三种形态

    工厂模式通常有三种形态:

  • 第一种:简单工厂模式(Simple Factory):不属于23种设计模式之一。简单工厂模式又叫做:静态 工厂方法模式。简单工厂模式是工厂方法模式的一种特殊实现。

  • 第二种:工厂方法模式(Factory Method):是23种设计模式之一。
  • 第三种:抽象工厂模式(Abstract Factory):是23种设计模式之一。

    6.2 简单工厂模式

    简单工厂模式的角色包括三个:

  • 抽象产品 角色

  • 具体产品 角色
  • 工厂类 角色

简单工厂模式的代码如下:
抽象产品角色:

  1. package com.powernode.factory;
  2. /**
  3. * 武器(抽象产品角色)
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Weapon
  7. * @since 1.0
  8. **/
  9. public abstract class Weapon {
  10. /**
  11. * 所有的武器都有攻击行为
  12. */
  13. public abstract void attack();
  14. }

具体产品角色:

  1. package com.powernode.factory;
  2. /**
  3. * 坦克(具体产品角色)
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Tank
  7. * @since 1.0
  8. **/
  9. public class Tank extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("坦克开炮!");
  13. }
  14. }
  1. package com.powernode.factory;
  2. /**
  3. * 战斗机(具体产品角色)
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Fighter
  7. * @since 1.0
  8. **/
  9. public class Fighter extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("战斗机投下原子弹!");
  13. }
  14. }
  1. package com.powernode.factory;
  2. /**
  3. * 匕首(具体产品角色)
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Dagger
  7. * @since 1.0
  8. **/
  9. public class Dagger extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("砍他丫的!");
  13. }
  14. }

工厂类角色:

  1. package com.powernode.factory;
  2. /**
  3. * 工厂类角色
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className WeaponFactory
  7. * @since 1.0
  8. **/
  9. public class WeaponFactory {
  10. /**
  11. * 根据不同的武器类型生产武器
  12. * @param weaponType 武器类型
  13. * @return 武器对象
  14. */
  15. public static Weapon get(String weaponType){
  16. if (weaponType == null || weaponType.trim().length() == 0) {
  17. return null;
  18. }
  19. Weapon weapon = null;
  20. if ("TANK".equals(weaponType)) {
  21. weapon = new Tank();
  22. } else if ("FIGHTER".equals(weaponType)) {
  23. weapon = new Fighter();
  24. } else if ("DAGGER".equals(weaponType)) {
  25. weapon = new Dagger();
  26. } else {
  27. throw new RuntimeException("不支持该武器!");
  28. }
  29. return weapon;
  30. }
  31. }

测试程序(客户端程序):

  1. package com.powernode.factory;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Client
  6. * @since 1.0
  7. **/
  8. public class Client {
  9. public static void main(String[] args) {
  10. Weapon weapon1 = WeaponFactory.get("TANK");
  11. weapon1.attack();
  12. Weapon weapon2 = WeaponFactory.get("FIGHTER");
  13. weapon2.attack();
  14. Weapon weapon3 = WeaponFactory.get("DAGGER");
  15. weapon3.attack();
  16. }
  17. }

执行结果:
image.png
简单工厂模式的优点:

  • 客户端程序不需要关心对象的创建细节,需要哪个对象时,只需要向工厂索要即可,初步实现了责任的分离。客户端只负责“消费”,工厂负责“生产”。生产和消费分离。

简单工厂模式的缺点:

  • 缺点1:工厂类集中了所有产品的创造逻辑,形成一个无所不知的全能类,有人把它叫做上帝类。显然工厂类非常关键,不能出问题,一旦出问题,整个系统瘫痪。
  • 缺点2:不符合OCP开闭原则,在进行系统扩展时,需要修改工厂类。

Spring中的BeanFactory就使用了简单工厂模式。

6.3 工厂方法模式

工厂方法模式既保留了简单工厂模式的优点,同时又解决了简单工厂模式的缺点。
工厂方法模式的角色包括:

  • 抽象工厂角色
  • 具体工厂角色
  • 抽象产品角色
  • 具体产品角色

代码如下:

  1. package com.powernode.factory;
  2. /**
  3. * 武器类(抽象产品角色)
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Weapon
  7. * @since 1.0
  8. **/
  9. public abstract class Weapon {
  10. /**
  11. * 所有武器都有攻击行为
  12. */
  13. public abstract void attack();
  14. }
  1. package com.powernode.factory;
  2. /**
  3. * 具体产品角色
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Gun
  7. * @since 1.0
  8. **/
  9. public class Gun extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("开枪射击!");
  13. }
  14. }
  1. package com.powernode.factory;
  2. /**
  3. * 具体产品角色
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Fighter
  7. * @since 1.0
  8. **/
  9. public class Fighter extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("战斗机发射核弹!");
  13. }
  14. }
  1. package com.powernode.factory;
  2. /**
  3. * 武器工厂接口(抽象工厂角色)
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className WeaponFactory
  7. * @since 1.0
  8. **/
  9. public interface WeaponFactory {
  10. Weapon get();
  11. }
  1. package com.powernode.factory;
  2. /**
  3. * 具体工厂角色
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className GunFactory
  7. * @since 1.0
  8. **/
  9. public class GunFactory implements WeaponFactory{
  10. @Override
  11. public Weapon get() {
  12. return new Gun();
  13. }
  14. }
  1. package com.powernode.factory;
  2. /**
  3. * 具体工厂角色
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className FighterFactory
  7. * @since 1.0
  8. **/
  9. public class FighterFactory implements WeaponFactory{
  10. @Override
  11. public Weapon get() {
  12. return new Fighter();
  13. }
  14. }

客户端程序:

  1. package com.powernode.factory;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Client
  6. * @since 1.0
  7. **/
  8. public class Client {
  9. public static void main(String[] args) {
  10. WeaponFactory factory = new GunFactory();
  11. Weapon weapon = factory.get();
  12. weapon.attack();
  13. WeaponFactory factory1 = new FighterFactory();
  14. Weapon weapon1 = factory1.get();
  15. weapon1.attack();
  16. }
  17. }

执行客户端程序:
image.png
如果想扩展一个新的产品,只要新增一个产品类,再新增一个该产品对应的工厂即可,例如新增:匕首

  1. package com.powernode.factory;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Dagger
  6. * @since 1.0
  7. **/
  8. public class Dagger extends Weapon{
  9. @Override
  10. public void attack() {
  11. System.out.println("砍丫的!");
  12. }
  13. }
  1. package com.powernode.factory;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className DaggerFactory
  6. * @since 1.0
  7. **/
  8. public class DaggerFactory implements WeaponFactory{
  9. @Override
  10. public Weapon get() {
  11. return new Dagger();
  12. }
  13. }

客户端程序:

  1. package com.powernode.factory;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Client
  6. * @since 1.0
  7. **/
  8. public class Client {
  9. public static void main(String[] args) {
  10. WeaponFactory factory = new GunFactory();
  11. Weapon weapon = factory.get();
  12. weapon.attack();
  13. WeaponFactory factory1 = new FighterFactory();
  14. Weapon weapon1 = factory1.get();
  15. weapon1.attack();
  16. WeaponFactory factory2 = new DaggerFactory();
  17. Weapon weapon2 = factory2.get();
  18. weapon2.attack();
  19. }
  20. }

执行结果如下:
image.png
我们可以看到在进行功能扩展的时候,不需要修改之前的源代码,显然工厂方法模式符合OCP原则。
工厂方法模式的优点:

  • 一个调用者想创建一个对象,只要知道其名称就可以了。
  • 扩展性高,如果想增加一个产品,只要扩展一个工厂类就可以。
  • 屏蔽产品的具体实现,调用者只关心产品的接口。

工厂方法模式的缺点:

  • 每次增加一个产品时,都需要增加一个具体类和对象实现工厂,使得系统中类的个数成倍增加,在一定程度上增加了系统的复杂度,同时也增加了系统具体类的依赖。这并不是什么好事。

    6.4 抽象工厂模式(了解)

    抽象工厂模式相对于工厂方法模式来说,就是工厂方法模式是针对一个产品系列的,而抽象工厂模式是针对多个产品系列的,即工厂方法模式是一个产品系列一个工厂类,而抽象工厂模式是多个产品系列一个工厂类。
    抽象工厂模式特点:抽象工厂模式是所有形态的工厂模式中最为抽象和最具一般性的一种形态。抽象工厂模式是指当有多个抽象角色时,使用的一种工厂模式。抽象工厂模式可以向客户端提供一个接口,使客户端在不必指定产品的具体的情况下,创建多个产品族中的产品对象。它有多个抽象产品类,每个抽象产品类可以派生出多个具体产品类,一个抽象工厂类,可以派生出多个具体工厂类,每个具体工厂类可以创建多个具体产品类的实例。每一个模式都是针对一定问题的解决方案,工厂方法模式针对的是一个产品等级结构;而抽象工厂模式针对的是多个产品等级结果。
    抽象工厂中包含4个角色:

  • 抽象工厂角色

  • 具体工厂角色
  • 抽象产品角色
  • 具体产品角色

抽象工厂模式的类图如下:
image.png
抽象工厂模式代码如下:
第一部分:武器产品族

  1. package com.powernode.product;
  2. /**
  3. * 武器产品族
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Weapon
  7. * @since 1.0
  8. **/
  9. public abstract class Weapon {
  10. public abstract void attack();
  11. }
  1. package com.powernode.product;
  2. /**
  3. * 武器产品族中的产品等级1
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Gun
  7. * @since 1.0
  8. **/
  9. public class Gun extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("开枪射击!");
  13. }
  14. }
  1. package com.powernode.product;
  2. /**
  3. * 武器产品族中的产品等级2
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Dagger
  7. * @since 1.0
  8. **/
  9. public class Dagger extends Weapon{
  10. @Override
  11. public void attack() {
  12. System.out.println("砍丫的!");
  13. }
  14. }

第二部分:水果产品族

  1. package com.powernode.product;
  2. /**
  3. * 水果产品族
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Fruit
  7. * @since 1.0
  8. **/
  9. public abstract class Fruit {
  10. /**
  11. * 所有果实都有一个成熟周期。
  12. */
  13. public abstract void ripeCycle();
  14. }
  1. package com.powernode.product;
  2. /**
  3. * 水果产品族中的产品等级1
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Orange
  7. * @since 1.0
  8. **/
  9. public class Orange extends Fruit{
  10. @Override
  11. public void ripeCycle() {
  12. System.out.println("橘子的成熟周期是10个月");
  13. }
  14. }
  1. package com.powernode.product;
  2. /**
  3. * 水果产品族中的产品等级2
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className Apple
  7. * @since 1.0
  8. **/
  9. public class Apple extends Fruit{
  10. @Override
  11. public void ripeCycle() {
  12. System.out.println("苹果的成熟周期是8个月");
  13. }
  14. }

第三部分:抽象工厂类

  1. package com.powernode.factory;
  2. import com.powernode.product.Fruit;
  3. import com.powernode.product.Weapon;
  4. /**
  5. * 抽象工厂
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className AbstractFactory
  9. * @since 1.0
  10. **/
  11. public abstract class AbstractFactory {
  12. public abstract Weapon getWeapon(String type);
  13. public abstract Fruit getFruit(String type);
  14. }

第四部分:具体工厂类

  1. package com.powernode.factory;
  2. import com.powernode.product.Dagger;
  3. import com.powernode.product.Fruit;
  4. import com.powernode.product.Gun;
  5. import com.powernode.product.Weapon;
  6. /**
  7. * 武器族工厂
  8. * @author 动力节点
  9. * @version 1.0
  10. * @className WeaponFactory
  11. * @since 1.0
  12. **/
  13. public class WeaponFactory extends AbstractFactory{
  14. public Weapon getWeapon(String type){
  15. if (type == null || type.trim().length() == 0) {
  16. return null;
  17. }
  18. if ("Gun".equals(type)) {
  19. return new Gun();
  20. } else if ("Dagger".equals(type)) {
  21. return new Dagger();
  22. } else {
  23. throw new RuntimeException("无法生产该武器");
  24. }
  25. }
  26. @Override
  27. public Fruit getFruit(String type) {
  28. return null;
  29. }
  30. }
  1. package com.powernode.factory;
  2. import com.powernode.product.*;
  3. /**
  4. * 水果族工厂
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className FruitFactory
  8. * @since 1.0
  9. **/
  10. public class FruitFactory extends AbstractFactory{
  11. @Override
  12. public Weapon getWeapon(String type) {
  13. return null;
  14. }
  15. public Fruit getFruit(String type){
  16. if (type == null || type.trim().length() == 0) {
  17. return null;
  18. }
  19. if ("Orange".equals(type)) {
  20. return new Orange();
  21. } else if ("Apple".equals(type)) {
  22. return new Apple();
  23. } else {
  24. throw new RuntimeException("我家果园不产这种水果");
  25. }
  26. }
  27. }

第五部分:客户端程序

  1. package com.powernode.client;
  2. import com.powernode.factory.AbstractFactory;
  3. import com.powernode.factory.FruitFactory;
  4. import com.powernode.factory.WeaponFactory;
  5. import com.powernode.product.Fruit;
  6. import com.powernode.product.Weapon;
  7. /**
  8. * @author 动力节点
  9. * @version 1.0
  10. * @className Client
  11. * @since 1.0
  12. **/
  13. public class Client {
  14. public static void main(String[] args) {
  15. // 客户端调用方法时只面向AbstractFactory调用方法。
  16. AbstractFactory factory = new WeaponFactory(); // 注意:这里的new WeaponFactory()可以采用 简单工厂模式 进行隐藏。
  17. Weapon gun = factory.getWeapon("Gun");
  18. Weapon dagger = factory.getWeapon("Dagger");
  19. gun.attack();
  20. dagger.attack();
  21. AbstractFactory factory1 = new FruitFactory(); // 注意:这里的new FruitFactory()可以采用 简单工厂模式 进行隐藏。
  22. Fruit orange = factory1.getFruit("Orange");
  23. Fruit apple = factory1.getFruit("Apple");
  24. orange.ripeCycle();
  25. apple.ripeCycle();
  26. }
  27. }

执行结果:
image.png
抽象工厂模式的优缺点:

  • 优点:当一个产品族中的多个对象被设计成一起工作时,它能保证客户端始终只使用同一个产品族中的对象。
  • 缺点:产品族扩展非常困难,要增加一个系列的某一产品,既要在AbstractFactory里加代码,又要在具体的里面加代码。

七、Bean的实例化方式

Spring为Bean提供了多种实例化方式,通常包括4种方式。(也就是说在Spring中为Bean对象的创建准备了多种方案,目的是:更加灵活)

  • 第一种:通过构造方法实例化
  • 第二种:通过简单工厂模式实例化
  • 第三种:通过factory-bean实例化
  • 第四种:通过FactoryBean接口实例化

    7.1 通过构造方法实例化

    我们之前一直使用的就是这种方式。默认情况下,会调用Bean的无参数构造方法。 ```java package com.powernode.spring6.bean;

/**

  • @author 动力节点
  • @version 1.0
  • @className User
  • @since 1.0 **/ public class User { public User() {
    1. System.out.println("User类的无参数构造方法执行。");
    } }
  1. ```xml
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <beans xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  6. <bean id="userBean" class="com.powernode.spring6.bean.User"/>
  7. </beans>
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.User;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. /**
  7. * @author 动力节点
  8. * @version 1.0
  9. * @className SpringInstantiationTest
  10. * @since 1.0
  11. **/
  12. public class SpringInstantiationTest {
  13. @Test
  14. public void testConstructor(){
  15. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  16. User user = applicationContext.getBean("userBean", User.class);
  17. System.out.println(user);
  18. }
  19. }

执行结果:
image.png

7.2 通过简单工厂模式实例化

第一步:定义一个Bean

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Vip
  6. * @since 1.0
  7. **/
  8. public class Vip {
  9. }

第二步:编写简单工厂模式当中的工厂类

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className VipFactory
  6. * @since 1.0
  7. **/
  8. public class VipFactory {
  9. public static Vip get(){
  10. return new Vip();
  11. }
  12. }

第三步:在Spring配置文件中指定创建该Bean的方法(使用factory-method属性指定)

  1. <bean id="vipBean" class="com.powernode.spring6.bean.VipFactory" factory-method="get"/>

第四步:编写测试程序

  1. @Test
  2. public void testSimpleFactory(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  4. Vip vip = applicationContext.getBean("vipBean", Vip.class);
  5. System.out.println(vip);
  6. }

执行结果:
image.png

7.3 通过factory-bean实例化

这种方式本质上是:通过工厂方法模式进行实例化。
第一步:定义一个Bean

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Order
  6. * @since 1.0
  7. **/
  8. public class Order {
  9. }

第二步:定义具体工厂类,工厂类中定义实例方法

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className OrderFactory
  6. * @since 1.0
  7. **/
  8. public class OrderFactory {
  9. public Order get(){
  10. return new Order();
  11. }
  12. }

第三步:在Spring配置文件中指定factory-bean以及factory-method

  1. <bean id="orderFactory" class="com.powernode.spring6.bean.OrderFactory"/>
  2. <bean id="orderBean" factory-bean="orderFactory" factory-method="get"/>

第四步:编写测试程序

  1. @Test
  2. public void testSelfFactoryBean(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  4. Order orderBean = applicationContext.getBean("orderBean", Order.class);
  5. System.out.println(orderBean);
  6. }

执行结果:
image.png

7.4 通过FactoryBean接口实例化

以上的第三种方式中,factory-bean是我们自定义的,factory-method也是我们自己定义的。
在Spring中,当你编写的类直接实现FactoryBean接口之后,factory-bean不需要指定了,factory-method也不需要指定了。
factory-bean会自动指向实现FactoryBean接口的类,factory-method会自动指向getObject()方法。
第一步:定义一个Bean

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Person
  6. * @since 1.0
  7. **/
  8. public class Person {
  9. }

第二步:编写一个类实现FactoryBean接口

  1. package com.powernode.spring6.bean;
  2. import org.springframework.beans.factory.FactoryBean;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className PersonFactoryBean
  7. * @since 1.0
  8. **/
  9. public class PersonFactoryBean implements FactoryBean<Person> {
  10. @Override
  11. public Person getObject() throws Exception {
  12. return new Person();
  13. }
  14. @Override
  15. public Class<?> getObjectType() {
  16. return null;
  17. }
  18. @Override
  19. public boolean isSingleton() {
  20. // true表示单例
  21. // false表示原型
  22. return true;
  23. }
  24. }

第三步:在Spring配置文件中配置FactoryBean

  1. <bean id="personBean" class="com.powernode.spring6.bean.PersonFactoryBean"/>

测试程序:

  1. @Test
  2. public void testFactoryBean(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  4. Person personBean = applicationContext.getBean("personBean", Person.class);
  5. System.out.println(personBean);
  6. Person personBean2 = applicationContext.getBean("personBean", Person.class);
  7. System.out.println(personBean2);
  8. }

执行结果:
image.png
FactoryBean在Spring中是一个接口。被称为“工厂Bean”。“工厂Bean”是一种特殊的Bean。所有的“工厂Bean”都是用来协助Spring框架来创建其他Bean对象的。

7.5 BeanFactory和FactoryBean的区别

7.5.1 BeanFactory

Spring IoC容器的顶级对象,BeanFactory被翻译为“Bean工厂”,在Spring的IoC容器中,“Bean工厂”负责创建Bean对象。
BeanFactory是工厂。

7.5.2 FactoryBean

FactoryBean:它是一个Bean,是一个能够辅助Spring实例化其它Bean对象的一个Bean。
在Spring中,Bean可以分为两类:

  • 第一类:普通Bean
  • 第二类:工厂Bean(记住:工厂Bean也是一种Bean,只不过这种Bean比较特殊,它可以辅助Spring实例化其它Bean对象。)

    7.6 注入自定义Date

    我们前面说过,java.util.Date在Spring中被当做简单类型,简单类型在注入的时候可以直接使用value属性或value标签来完成。但我们之前已经测试过了,对于Date类型来说,采用value属性或value标签赋值的时候,对日期字符串的格式要求非常严格,必须是这种格式的:Mon Oct 10 14:30:26 CST 2022。其他格式是不会被识别的。如以下代码: ```java package com.powernode.spring6.bean;

import java.util.Date;

/**

  • @author 动力节点
  • @version 1.0
  • @className Student
  • @since 1.0 **/ public class Student { private Date birth;

    public void setBirth(Date birth) {

    1. this.birth = birth;

    }

    @Override public String toString() {

    1. return "Student{" +
    2. "birth=" + birth +
    3. '}';

    } }

  1. ```xml
  2. <bean id="studentBean" class="com.powernode.spring6.bean.Student">
  3. <property name="birth" value="Mon Oct 10 14:30:26 CST 2002"/>
  4. </bean>
  1. @Test
  2. public void testDate(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  4. Student studentBean = applicationContext.getBean("studentBean", Student.class);
  5. System.out.println(studentBean);
  6. }

执行结果:
image.png
如果把日期格式修改一下:

  1. <bean id="studentBean" class="com.powernode.spring6.bean.Student">
  2. <property name="birth" value="2002-10-10"/>
  3. </bean>

执行结果:
image.png
这种情况下,我们就可以使用FactoryBean来完成这个骚操作。
编写DateFactoryBean实现FactoryBean接口:

  1. package com.powernode.spring6.bean;
  2. import org.springframework.beans.factory.FactoryBean;
  3. import java.text.SimpleDateFormat;
  4. import java.util.Date;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className DateFactoryBean
  9. * @since 1.0
  10. **/
  11. public class DateFactoryBean implements FactoryBean<Date> {
  12. // 定义属性接收日期字符串
  13. private String date;
  14. // 通过构造方法给日期字符串属性赋值
  15. public DateFactoryBean(String date) {
  16. this.date = date;
  17. }
  18. @Override
  19. public Date getObject() throws Exception {
  20. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
  21. return sdf.parse(this.date);
  22. }
  23. @Override
  24. public Class<?> getObjectType() {
  25. return null;
  26. }
  27. }

编写spring配置文件:

  1. <bean id="dateBean" class="com.powernode.spring6.bean.DateFactoryBean">
  2. <constructor-arg name="date" value="1999-10-11"/>
  3. </bean>
  4. <bean id="studentBean" class="com.powernode.spring6.bean.Student">
  5. <property name="birth" ref="dateBean"/>
  6. </bean>

执行测试程序:
image.png

八、Bean的生命周期

8.1 什么是Bean的生命周期

Spring其实就是一个管理Bean对象的工厂。它负责对象的创建,对象的销毁等。
所谓的生命周期就是:对象从创建开始到最终销毁的整个过程。
什么时候创建Bean对象?
创建Bean对象的前后会调用什么方法?
Bean对象什么时候销毁?
Bean对象的销毁前后调用什么方法?

8.2 为什么要知道Bean的生命周期

其实生命周期的本质是:在哪个时间节点上调用了哪个类的哪个方法。
我们需要充分的了解在这个生命线上,都有哪些特殊的时间节点。
只有我们知道了特殊的时间节点都在哪,到时我们才可以确定代码写到哪。
我们可能需要在某个特殊的时间点上执行一段特定的代码,这段代码就可以放到这个节点上。当生命线走到这里的时候,自然会被调用。

8.3 Bean的生命周期之5步

Bean生命周期的管理,可以参考Spring的源码:AbstractAutowireCapableBeanFactory类的doCreateBean()方法。
Bean生命周期可以粗略的划分为五大步:

  • 第一步:实例化Bean
  • 第二步:Bean属性赋值
  • 第三步:初始化Bean
  • 第四步:使用Bean
  • 第五步:销毁Bean

image.png
编写测试程序:
定义一个Bean

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className User
  6. * @since 1.0
  7. **/
  8. public class User {
  9. private String name;
  10. public User() {
  11. System.out.println("1.实例化Bean");
  12. }
  13. public void setName(String name) {
  14. this.name = name;
  15. System.out.println("2.Bean属性赋值");
  16. }
  17. public void initBean(){
  18. System.out.println("3.初始化Bean");
  19. }
  20. public void destroyBean(){
  21. System.out.println("5.销毁Bean");
  22. }
  23. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <!--
  6. init-method属性指定初始化方法。
  7. destroy-method属性指定销毁方法。
  8. -->
  9. <bean id="userBean" class="com.powernode.spring6.bean.User" init-method="initBean" destroy-method="destroyBean">
  10. <property name="name" value="zhangsan"/>
  11. </bean>
  12. </beans>
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.User;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. /**
  7. * @author 动力节点
  8. * @version 1.0
  9. * @className BeanLifecycleTest
  10. * @since 1.0
  11. **/
  12. public class BeanLifecycleTest {
  13. @Test
  14. public void testLifecycle(){
  15. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  16. User userBean = applicationContext.getBean("userBean", User.class);
  17. System.out.println("4.使用Bean");
  18. // 只有正常关闭spring容器才会执行销毁方法
  19. ClassPathXmlApplicationContext context = (ClassPathXmlApplicationContext) applicationContext;
  20. context.close();
  21. }
  22. }

执行结果:
image.png
需要注意的:

  • 第一:只有正常关闭spring容器,bean的销毁方法才会被调用。
  • 第二:ClassPathXmlApplicationContext类才有close()方法。
  • 第三:配置文件中的init-method指定初始化方法。destroy-method指定销毁方法。

    8.4 Bean生命周期之7步

    在以上的5步中,第3步是初始化Bean,如果你还想在初始化前和初始化后添加代码,可以加入“Bean后处理器”。
    编写一个类实现BeanPostProcessor类,并且重写before和after方法: ```java package com.powernode.spring6.bean;

import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanPostProcessor;

/**

  • @author 动力节点
  • @version 1.0
  • @className LogBeanPostProcessor
  • @since 1.0 **/ public class LogBeanPostProcessor implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {

    1. System.out.println("Bean后处理器的before方法执行,即将开始初始化");
    2. return bean;

    }

    @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {

    1. System.out.println("Bean后处理器的after方法执行,已完成初始化");
    2. return bean;

    } }

  1. spring.xml文件中配置“Bean后处理器”:
  2. ```xml
  3. <!--配置Bean后处理器。这个后处理器将作用于当前配置文件中所有的bean。-->
  4. <bean class="com.powernode.spring6.bean.LogBeanPostProcessor"/>

一定要注意:在spring.xml文件中配置的Bean后处理器将作用于当前配置文件中所有的Bean。
执行测试程序:
image.png
如果加上Bean后处理器的话,Bean的生命周期就是7步了:
image.png

8.5 Bean生命周期之10步

如果根据源码跟踪,可以划分更细粒度的步骤,10步:
image.png
上图中检查Bean是否实现了Aware的相关接口是什么意思?
Aware相关的接口包括:BeanNameAware、BeanClassLoaderAware、BeanFactoryAware

  • 当Bean实现了BeanNameAware,Spring会将Bean的名字传递给Bean。
  • 当Bean实现了BeanClassLoaderAware,Spring会将加载该Bean的类加载器传递给Bean。
  • 当Bean实现了BeanFactoryAware,Spring会将Bean工厂对象传递给Bean。

测试以上10步,可以让User类实现5个接口,并实现所有方法:

  • BeanNameAware
  • BeanClassLoaderAware
  • BeanFactoryAware
  • InitializingBean
  • DisposableBean

代码如下:

  1. package com.powernode.spring6.bean;
  2. import org.springframework.beans.BeansException;
  3. import org.springframework.beans.factory.*;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className User
  8. * @since 1.0
  9. **/
  10. public class User implements BeanNameAware, BeanClassLoaderAware, BeanFactoryAware, InitializingBean, DisposableBean {
  11. private String name;
  12. public User() {
  13. System.out.println("1.实例化Bean");
  14. }
  15. public void setName(String name) {
  16. this.name = name;
  17. System.out.println("2.Bean属性赋值");
  18. }
  19. public void initBean(){
  20. System.out.println("6.初始化Bean");
  21. }
  22. public void destroyBean(){
  23. System.out.println("10.销毁Bean");
  24. }
  25. @Override
  26. public void setBeanClassLoader(ClassLoader classLoader) {
  27. System.out.println("3.类加载器:" + classLoader);
  28. }
  29. @Override
  30. public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
  31. System.out.println("3.Bean工厂:" + beanFactory);
  32. }
  33. @Override
  34. public void setBeanName(String name) {
  35. System.out.println("3.bean名字:" + name);
  36. }
  37. @Override
  38. public void destroy() throws Exception {
  39. System.out.println("9.DisposableBean destroy");
  40. }
  41. @Override
  42. public void afterPropertiesSet() throws Exception {
  43. System.out.println("5.afterPropertiesSet执行");
  44. }
  45. }
  1. package com.powernode.spring6.bean;
  2. import org.springframework.beans.BeansException;
  3. import org.springframework.beans.factory.config.BeanPostProcessor;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className LogBeanPostProcessor
  8. * @since 1.0
  9. **/
  10. public class LogBeanPostProcessor implements BeanPostProcessor {
  11. @Override
  12. public Object postProcessBeforeInitialization(Object bean, String beanName) throws BeansException {
  13. System.out.println("4.Bean后处理器的before方法执行,即将开始初始化");
  14. return bean;
  15. }
  16. @Override
  17. public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {
  18. System.out.println("7.Bean后处理器的after方法执行,已完成初始化");
  19. return bean;
  20. }
  21. }

执行结果:
image.png
通过测试可以看出来:

  • InitializingBean的方法早于init-method的执行。
  • DisposableBean的方法早于destroy-method的执行。

对于SpringBean的生命周期,掌握之前的7步即可。够用。

8.6 Bean的作用域不同,管理方式不同

Spring 根据Bean的作用域来选择管理方式。

  • 对于singleton作用域的Bean,Spring 能够精确地知道该Bean何时被创建,何时初始化完成,以及何时被销毁;
  • 而对于 prototype 作用域的 Bean,Spring 只负责创建,当容器创建了 Bean 的实例后,Bean 的实例就交给客户端代码管理,Spring 容器将不再跟踪其生命周期。

我们把之前User类的spring.xml文件中的配置scope设置为prototype:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <!--
  6. init-method属性指定初始化方法。
  7. destroy-method属性指定销毁方法。
  8. -->
  9. <bean id="userBean" class="com.powernode.spring6.bean.User" init-method="initBean" destroy-method="destroyBean" scope="prototype">
  10. <property name="name" value="zhangsan"/>
  11. </bean>
  12. <!--配置Bean后处理器。这个后处理器将作用于当前配置文件中所有的bean。-->
  13. <bean class="com.powernode.spring6.bean.LogBeanPostProcessor"/>
  14. </beans>

执行测试程序:
image.png
通过测试一目了然。只执行了前8步,第9和10都没有执行。

8.7 自己new的对象如何让Spring管理

有些时候可能会遇到这样的需求,某个java对象是我们自己new的,然后我们希望这个对象被Spring容器管理,怎么实现?

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className User
  6. * @since 1.0
  7. **/
  8. public class User {
  9. }
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.User;
  3. import org.junit.Test;
  4. import org.springframework.beans.factory.support.DefaultListableBeanFactory;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className RegisterBeanTest
  9. * @since 1.0
  10. **/
  11. public class RegisterBeanTest {
  12. @Test
  13. public void testBeanRegister(){
  14. // 自己new的对象
  15. User user = new User();
  16. System.out.println(user);
  17. // 创建 默认可列表BeanFactory 对象
  18. DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
  19. // 注册Bean
  20. factory.registerSingleton("userBean", user);
  21. // 从spring容器中获取bean
  22. User userBean = factory.getBean("userBean", User.class);
  23. System.out.println(userBean);
  24. }
  25. }

执行结果:
image.png

九、Bean的循环依赖问题

9.1 什么是Bean的循环依赖

A对象中有B属性。B对象中有A属性。这就是循环依赖。我依赖你,你也依赖我。
比如:丈夫类Husband,妻子类Wife。Husband中有Wife的引用。Wife中有Husband的引用。
image.png

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Husband
  6. * @since 1.0
  7. **/
  8. public class Husband {
  9. private String name;
  10. private Wife wife;
  11. }
  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Wife
  6. * @since 1.0
  7. **/
  8. public class Wife {
  9. private String name;
  10. private Husband husband;
  11. }

9.2 singleton下的set注入产生的循环依赖

我们来编写程序,测试一下在singleton+setter的模式下产生的循环依赖,Spring是否能够解决?

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Husband
  6. * @since 1.0
  7. **/
  8. public class Husband {
  9. private String name;
  10. private Wife wife;
  11. public void setName(String name) {
  12. this.name = name;
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setWife(Wife wife) {
  18. this.wife = wife;
  19. }
  20. // toString()方法重写时需要注意:不能直接输出wife,输出wife.getName()。要不然会出现递归导致的栈内存溢出错误。
  21. @Override
  22. public String toString() {
  23. return "Husband{" +
  24. "name='" + name + '\'' +
  25. ", wife=" + wife.getName() +
  26. '}';
  27. }
  28. }
  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Wife
  6. * @since 1.0
  7. **/
  8. public class Wife {
  9. private String name;
  10. private Husband husband;
  11. public void setName(String name) {
  12. this.name = name;
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setHusband(Husband husband) {
  18. this.husband = husband;
  19. }
  20. // toString()方法重写时需要注意:不能直接输出husband,输出husband.getName()。要不然会出现递归导致的栈内存溢出错误。
  21. @Override
  22. public String toString() {
  23. return "Wife{" +
  24. "name='" + name + '\'' +
  25. ", husband=" + husband.getName() +
  26. '}';
  27. }
  28. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="husbandBean" class="com.powernode.spring6.bean.Husband" scope="singleton">
  6. <property name="name" value="张三"/>
  7. <property name="wife" ref="wifeBean"/>
  8. </bean>
  9. <bean id="wifeBean" class="com.powernode.spring6.bean.Wife" scope="singleton">
  10. <property name="name" value="小花"/>
  11. <property name="husband" ref="husbandBean"/>
  12. </bean>
  13. </beans>
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.Husband;
  3. import com.powernode.spring6.bean.Wife;
  4. import org.junit.Test;
  5. import org.springframework.context.ApplicationContext;
  6. import org.springframework.context.support.ClassPathXmlApplicationContext;
  7. /**
  8. * @author 动力节点
  9. * @version 1.0
  10. * @className CircularDependencyTest
  11. * @since 1.0
  12. **/
  13. public class CircularDependencyTest {
  14. @Test
  15. public void testSingletonAndSet(){
  16. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  17. Husband husbandBean = applicationContext.getBean("husbandBean", Husband.class);
  18. Wife wifeBean = applicationContext.getBean("wifeBean", Wife.class);
  19. System.out.println(husbandBean);
  20. System.out.println(wifeBean);
  21. }
  22. }

执行结果:
image.png
通过测试得知:在singleton + set注入的情况下,循环依赖是没有问题的。Spring可以解决这个问题。

9.3 prototype下的set注入产生的循环依赖

我们再来测试一下:prototype+set注入的方式下,循环依赖会不会出现问题?

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="husbandBean" class="com.powernode.spring6.bean.Husband" scope="prototype">
  6. <property name="name" value="张三"/>
  7. <property name="wife" ref="wifeBean"/>
  8. </bean>
  9. <bean id="wifeBean" class="com.powernode.spring6.bean.Wife" scope="prototype">
  10. <property name="name" value="小花"/>
  11. <property name="husband" ref="husbandBean"/>
  12. </bean>
  13. </beans>

执行测试程序:发生了异常,异常信息如下:
Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name ‘husbandBean’: Requested bean is currently in creation: Is there an unresolvable circular reference?
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:265)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:325)
… 44 more
翻译为:创建名为“husbandBean”的bean时出错:请求的bean当前正在创建中:是否存在无法解析的循环引用?
通过测试得知,当循环依赖的所有Bean的scope=”prototype”的时候,产生的循环依赖,Spring是无法解决的,会出现BeanCurrentlyInCreationException异常。
大家可以测试一下,以上两个Bean,如果其中一个是singleton,另一个是prototype,是没有问题的。
为什么两个Bean都是prototype时会出错呢?
image.png

9.4 singleton下的构造注入产生的循环依赖

我们再来测试一下singleton + 构造注入的方式下,spring是否能够解决这种循环依赖。

  1. package com.powernode.spring6.bean2;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Husband
  6. * @since 1.0
  7. **/
  8. public class Husband {
  9. private String name;
  10. private Wife wife;
  11. public Husband(String name, Wife wife) {
  12. this.name = name;
  13. this.wife = wife;
  14. }
  15. // -----------------------分割线--------------------------------
  16. public String getName() {
  17. return name;
  18. }
  19. @Override
  20. public String toString() {
  21. return "Husband{" +
  22. "name='" + name + '\'' +
  23. ", wife=" + wife +
  24. '}';
  25. }
  26. }
  1. package com.powernode.spring6.bean2;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Wife
  6. * @since 1.0
  7. **/
  8. public class Wife {
  9. private String name;
  10. private Husband husband;
  11. public Wife(String name, Husband husband) {
  12. this.name = name;
  13. this.husband = husband;
  14. }
  15. // -------------------------分割线--------------------------------
  16. public String getName() {
  17. return name;
  18. }
  19. @Override
  20. public String toString() {
  21. return "Wife{" +
  22. "name='" + name + '\'' +
  23. ", husband=" + husband +
  24. '}';
  25. }
  26. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="hBean" class="com.powernode.spring6.bean2.Husband" scope="singleton">
  6. <constructor-arg name="name" value="张三"/>
  7. <constructor-arg name="wife" ref="wBean"/>
  8. </bean>
  9. <bean id="wBean" class="com.powernode.spring6.bean2.Wife" scope="singleton">
  10. <constructor-arg name="name" value="小花"/>
  11. <constructor-arg name="husband" ref="hBean"/>
  12. </bean>
  13. </beans>
  1. @Test
  2. public void testSingletonAndConstructor(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring2.xml");
  4. Husband hBean = applicationContext.getBean("hBean", Husband.class);
  5. Wife wBean = applicationContext.getBean("wBean", Wife.class);
  6. System.out.println(hBean);
  7. System.out.println(wBean);
  8. }

执行结果:发生了异常,信息如下:
Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name ‘hBean’: Requested bean is currently in creation: Is there an unresolvable circular reference?
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.beforeSingletonCreation(DefaultSingletonBeanRegistry.java:355)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:227)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:324)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:325)
… 56 more
和上一个测试结果相同,都是提示产生了循环依赖,并且Spring是无法解决这种循环依赖的。
为什么呢?
主要原因是因为通过构造方法注入导致的:因为构造方法注入会导致实例化对象的过程和对象属性赋值的过程没有分离开,必须在一起完成导致的。

9.5 Spring解决循环依赖的机理

Spring为什么可以解决set + singleton模式下循环依赖?
根本的原因在于:这种方式可以做到将“实例化Bean”和“给Bean属性赋值”这两个动作分开去完成。
实例化Bean的时候:调用无参数构造方法来完成。此时可以先不给属性赋值,可以提前将该Bean对象“曝光”给外界。
给Bean属性赋值的时候:调用setter方法来完成。
两个步骤是完全可以分离开去完成的,并且这两步不要求在同一个时间点上完成。
也就是说,Bean都是单例的,我们可以先把所有的单例Bean实例化出来,放到一个集合当中(我们可以称之为缓存),所有的单例Bean全部实例化完成之后,以后我们再慢慢的调用setter方法给属性赋值。这样就解决了循环依赖的问题。
那么在Spring框架底层源码级别上是如何实现的呢?请看:
image.png
在以上类中包含三个重要的属性:
Cache of singleton objects: bean name to bean instance. 单例对象的缓存:key存储bean名称,value存储Bean对象【一级缓存】
Cache of early singleton objects: bean name to bean instance. 早期单例对象的缓存:key存储bean名称,value存储早期的Bean对象【二级缓存】
Cache of singleton factories: bean name to ObjectFactory. 单例工厂缓存:key存储bean名称,value存储该Bean对应的ObjectFactory对象【三级缓存】
这三个缓存其实本质上是三个Map集合。
我们再来看,在该类中有这样一个方法addSingletonFactory(),这个方法的作用是:将创建Bean对象的ObjectFactory对象提前曝光。
image.png
再分析下面的源码:
image.png
从源码中可以看到,spring会先从一级缓存中获取Bean,如果获取不到,则从二级缓存中获取Bean,如果二级缓存还是获取不到,则从三级缓存中获取之前曝光的ObjectFactory对象,通过ObjectFactory对象获取Bean实例,这样就解决了循环依赖的问题。
总结:
Spring只能解决setter方法注入的单例bean之间的循环依赖。ClassA依赖ClassB,ClassB又依赖ClassA,形成依赖闭环。Spring在创建ClassA对象后,不需要等给属性赋值,直接将其曝光到bean缓存当中。在解析ClassA的属性时,又发现依赖于ClassB,再次去获取ClassB,当解析ClassB的属性时,又发现需要ClassA的属性,但此时的ClassA已经被提前曝光加入了正在创建的bean的缓存中,则无需创建新的的ClassA的实例,直接从缓存中获取即可。从而解决循环依赖问题。

十、回顾反射机制

10.1 分析方法四要素

我们先来看一下,不使用反射机制调用一个方法需要几个要素的参与。
有一个这样的类:

  1. package com.powernode.reflect;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className SystemService
  6. * @since 1.0
  7. **/
  8. public class SystemService {
  9. public void logout(){
  10. System.out.println("退出系统");
  11. }
  12. public boolean login(String username, String password){
  13. if ("admin".equals(username) && "admin123".equals(password)) {
  14. return true;
  15. }
  16. return false;
  17. }
  18. }

编写程序调用方法:

  1. package com.powernode.reflect;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className ReflectTest01
  6. * @since 1.0
  7. **/
  8. public class ReflectTest01 {
  9. public static void main(String[] args) {
  10. // 创建对象
  11. SystemService systemService = new SystemService();
  12. // 调用方法并接收方法的返回值
  13. boolean success = systemService.login("admin", "admin123");
  14. System.out.println(success ? "登录成功" : "登录失败");
  15. }
  16. }

执行结果:
image.png
通过以上第16行代码可以看出,调用一个方法,一般涉及到4个要素:

  • 调用哪个对象的(systemService)
  • 哪个方法(login)
  • 传什么参数(”admin”, “admin123”)
  • 返回什么值(success)

    10.2 获取Method

    要使用反射机制调用一个方法,首先你要获取到这个方法。
    在反射机制中Method实例代表的是一个方法。那么怎么获取Method实例呢?
    有这样一个类: ```java package com.powernode.reflect;

/**

  • @author 动力节点
  • @version 1.0
  • @className SystemService
  • @since 1.0 **/ public class SystemService {

    public void logout(){

    1. System.out.println("退出系统");

    }

    public boolean login(String username, String password){

    1. if ("admin".equals(username) && "admin123".equals(password)) {
    2. return true;
    3. }
    4. return false;

    }

    public boolean login(String password){

    1. if("110".equals(password)){
    2. return true;
    3. }
    4. return false;

    } }

  1. 我们如何获取到 logout()、login(String,String)、login(String) 这三个方法呢?<br />要获取方法Method,首先你需要获取这个类Class
  2. ```java
  3. Class clazz = Class.forName("com.powernode.reflect.SystemService");

当拿到Class之后,调用getDeclaredMethod()方法可以获取到方法。
假如你要获取这个方法:login(String username, String password)

  1. Method loginMethod = clazz.getDeclaredMethod("login", String.class, String.class);

假如你要获取到这个方法:login(String password)

  1. Method loginMethod = clazz.getDeclaredMethod("login", String.class);

获取一个方法,需要告诉Java程序,你要获取的方法的名字是什么,这个方法上每个形参的类型是什么。这样Java程序才能给你拿到对应的方法。
这样的设计也非常合理,因为在同一个类当中,方法是支持重载的,也就是说方法名可以一样,但参数列表一定是不一样的,所以获取一个方法需要提供方法名以及每个形参的类型。
假设有这样一个方法:

  1. public void setAge(int age){
  2. this.age = age;
  3. }

你要获取这个方法的话,代码应该这样写:

  1. Method setAgeMethod = clazz.getDeclaredMethod("setAge", int.class);

其中setAge是方法名,int.class是形参的类型。
如果要获取上面的logout方法,代码应该这样写:

  1. Method logoutMethod = clazz.getDeclaredMethod("logout");

因为这个方法形式参数的个数是0个。所以只需要提供方法名就行了。你学会了吗?

10.3 调用Method

要让一个方法调用的话,就关联到四要素了:

  • 调用哪个对象的
  • 哪个方法
  • 传什么参数
  • 返回什么值 ```java package com.powernode.reflect;

/**

  • @author 动力节点
  • @version 1.0
  • @className SystemService
  • @since 1.0 **/ public class SystemService {

    public void logout(){

    1. System.out.println("退出系统");

    }

    public boolean login(String username, String password){

    1. if ("admin".equals(username) && "admin123".equals(password)) {
    2. return true;
    3. }
    4. return false;

    }

    public boolean login(String password){

    1. if("110".equals(password)){
    2. return true;
    3. }
    4. return false;

    } }

  1. 假如我们要调用的方法是:login(String, String)<br />第一步:创建对象(四要素之首:调用哪个对象的)
  2. ```java
  3. Class clazz = Class.forName("com.powernode.reflect.SystemService");
  4. Object obj = clazz.newInstance();

第二步:获取方法login(String,String)(四要素之一:哪个方法)

  1. Method loginMethod = clazz.getDeclaredMethod("login", String.class, String.class);

第三步:调用方法

  1. Object retValue = loginMethod.invoke(obj, "admin", "admin123");

解说四要素:

  • 哪个对象:obj
  • 哪个方法:loginMethod
  • 传什么参数:”admin”, “admin123”
  • 返回什么值:retValue ```java package com.powernode.reflect;

import java.lang.reflect.Method;

/**

  • @author 动力节点
  • @version 1.0
  • @className ReflectTest02
  • @since 1.0 **/ public class ReflectTest02 { public static void main(String[] args) throws Exception{
    1. Class clazz = Class.forName("com.powernode.reflect.SystemService");
    2. Object obj = clazz.newInstance();
    3. Method loginMethod = clazz.getDeclaredMethod("login", String.class, String.class);
    4. Object retValue = loginMethod.invoke(obj, "admin", "admin123");
    5. System.out.println(retValue);
    } }
  1. 执行结果:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1665471501974-88a80910-1c8e-495b-956f-d6b7a82bf5b4.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_11%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23faf9f9&clientId=ue12e8566-378b-4&from=paste&height=139&id=u943855ba&originHeight=139&originWidth=398&originalType=binary&ratio=1&rotation=0&showTitle=false&size=7435&status=done&style=shadow&taskId=ued2fb744-f833-4edf-a934-69cf0d8b4b5&title=&width=398)<br />那如果调用既没有参数,又没有返回值的logout方法,应该怎么做?
  2. ```java
  3. package com.powernode.reflect;
  4. import java.lang.reflect.Method;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className ReflectTest03
  9. * @since 1.0
  10. **/
  11. public class ReflectTest03 {
  12. public static void main(String[] args) throws Exception{
  13. Class clazz = Class.forName("com.powernode.reflect.SystemService");
  14. Object obj = clazz.newInstance();
  15. Method logoutMethod = clazz.getDeclaredMethod("logout");
  16. logoutMethod.invoke(obj);
  17. }
  18. }

执行结果:
image.png

10.4 假设你知道属性名

假设有这样一个类:

  1. package com.powernode.reflect;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className User
  6. * @since 1.0
  7. **/
  8. public class User {
  9. private String name;
  10. private int age;
  11. public String getName() {
  12. return name;
  13. }
  14. public void setName(String name) {
  15. this.name = name;
  16. }
  17. public int getAge() {
  18. return age;
  19. }
  20. public void setAge(int age) {
  21. this.age = age;
  22. }
  23. @Override
  24. public String toString() {
  25. return "User{" +
  26. "name='" + name + '\'' +
  27. ", age=" + age +
  28. '}';
  29. }
  30. }

你知道以下这几条信息:

  • 类名是:com.powernode.reflect.User
  • 该类中有String类型的name属性和int类型的age属性。
  • 另外你也知道该类的设计符合javabean规范。(也就是说属性私有化,对外提供setter和getter方法)

你如何通过反射机制给User对象的name属性赋值zhangsan,给age属性赋值20岁。

  1. package com.powernode.reflect;
  2. import java.lang.reflect.Method;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className UserTest
  7. * @since 1.0
  8. **/
  9. public class UserTest {
  10. public static void main(String[] args) throws Exception{
  11. // 已知类名
  12. String className = "com.powernode.reflect.User";
  13. // 已知属性名
  14. String propertyName = "age";
  15. // 通过反射机制给User对象的age属性赋值20岁
  16. Class<?> clazz = Class.forName(className);
  17. Object obj = clazz.newInstance(); // 创建对象
  18. // 根据属性名获取setter方法名
  19. String setMethodName = "set" + propertyName.toUpperCase().charAt(0) + propertyName.substring(1);
  20. // 获取Method
  21. Method setMethod = clazz.getDeclaredMethod(setMethodName, int.class);
  22. // 调用Method
  23. setMethod.invoke(obj, 20);
  24. System.out.println(obj);
  25. }
  26. }

执行结果:
image.png
给User的name属性赋值zhangsan,这个大家可以尝试自己完成哦!!!

十一、手写Spring框架

Spring IoC容器的实现原理:工厂模式 + 解析XML + 反射机制。
我们给自己的框架起名为:myspring(我的春天)

第一步:创建模块myspring

采用Maven方式新建Module:myspring
image.png
打包方式采用jar,并且引入dom4j和jaxen的依赖,因为要使用它解析XML文件,还有junit依赖。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.myspringframework</groupId>
  7. <artifactId>myspring</artifactId>
  8. <version>1.0.0</version>
  9. <packaging>jar</packaging>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.dom4j</groupId>
  13. <artifactId>dom4j</artifactId>
  14. <version>2.1.3</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>jaxen</groupId>
  18. <artifactId>jaxen</artifactId>
  19. <version>1.2.0</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>junit</groupId>
  23. <artifactId>junit</artifactId>
  24. <version>4.13.2</version>
  25. <scope>test</scope>
  26. </dependency>
  27. </dependencies>
  28. <properties>
  29. <maven.compiler.source>17</maven.compiler.source>
  30. <maven.compiler.target>17</maven.compiler.target>
  31. </properties>
  32. </project>

第二步:准备好我们要管理的Bean

准备好我们要管理的Bean(这些Bean在将来开发完框架之后是要删除的
注意包名,不要用org.myspringframework包,因为这些Bean不是框架内置的。是将来使用我们框架的程序员提供的。

  1. package com.powernode.myspring.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className Address
  6. * @since 1.0
  7. **/
  8. public class Address {
  9. private String city;
  10. private String street;
  11. private String zipcode;
  12. public Address() {
  13. }
  14. public String getCity() {
  15. return city;
  16. }
  17. public void setCity(String city) {
  18. this.city = city;
  19. }
  20. public String getStreet() {
  21. return street;
  22. }
  23. public void setStreet(String street) {
  24. this.street = street;
  25. }
  26. public String getZipcode() {
  27. return zipcode;
  28. }
  29. public void setZipcode(String zipcode) {
  30. this.zipcode = zipcode;
  31. }
  32. @Override
  33. public String toString() {
  34. return "Address{" +
  35. "city='" + city + '\'' +
  36. ", street='" + street + '\'' +
  37. ", zipcode='" + zipcode + '\'' +
  38. '}';
  39. }
  40. }
  1. package com.powernode.myspring.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className User
  6. * @since 1.0
  7. **/
  8. public class User {
  9. private String name;
  10. private int age;
  11. private Address addr;
  12. public User() {
  13. }
  14. public String getName() {
  15. return name;
  16. }
  17. public void setName(String name) {
  18. this.name = name;
  19. }
  20. public int getAge() {
  21. return age;
  22. }
  23. public void setAge(int age) {
  24. this.age = age;
  25. }
  26. public Address getAddr() {
  27. return addr;
  28. }
  29. public void setAddr(Address addr) {
  30. this.addr = addr;
  31. }
  32. @Override
  33. public String toString() {
  34. return "User{" +
  35. "name='" + name + '\'' +
  36. ", age=" + age +
  37. ", addr=" + addr +
  38. '}';
  39. }
  40. }

第三步:准备myspring.xml配置文件

将来在框架开发完毕之后,这个文件也是要删除的。因为这个配置文件的提供者应该是使用这个框架的程序员。
文件名随意,我们这里叫做:myspring.xml
文件放在类路径当中即可,我们这里把文件放到类的根路径下。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans>
  3. <bean id="userBean" class="com.powernode.myspring.bean.User">
  4. <property name="name" value="张三"/>
  5. <property name="age" value="20"/>
  6. <property name="addr" ref="addrBean"/>
  7. </bean>
  8. <bean id="addrBean" class="com.powernode.myspring.bean.Address">
  9. <property name="city" value="北京"/>
  10. <property name="street" value="大兴区"/>
  11. <property name="zipcode" value="1000001"/>
  12. </bean>
  13. </beans>

使用value给简单属性赋值。使用ref给非简单属性赋值。

第四步:编写ApplicationContext接口

ApplicationContext接口中提供一个getBean()方法,通过该方法可以获取Bean对象。
注意包名:这个接口就是myspring框架中的一员了。

  1. package org.myspringframework.core;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className ApplicationContext
  6. * @since 1.0
  7. **/
  8. public interface ApplicationContext {
  9. /**
  10. * 根据bean的id获取bean实例。
  11. * @param beanId bean的id
  12. * @return bean实例
  13. */
  14. Object getBean(String beanId);
  15. }

第五步:编写ClassPathXmlApplicationContext

ClassPathXmlApplicationContext是ApplicationContext接口的实现类。该类从类路径当中加载myspring.xml配置文件。

  1. package org.myspringframework.core;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className ClassPathXmlApplicationContext
  6. * @since 1.0
  7. **/
  8. public class ClassPathXmlApplicationContext implements ApplicationContext{
  9. @Override
  10. public Object getBean(String beanId) {
  11. return null;
  12. }
  13. }

第六步:确定采用Map集合存储Bean

确定采用Map集合存储Bean实例。Map集合的key存储beanId,value存储Bean实例。Map
在ClassPathXmlApplicationContext类中添加Map属性。
并且在ClassPathXmlApplicationContext类中添加构造方法,该构造方法的参数接收myspring.xml文件。
同时实现getBean方法。

  1. package org.myspringframework.core;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className ClassPathXmlApplicationContext
  8. * @since 1.0
  9. **/
  10. public class ClassPathXmlApplicationContext implements ApplicationContext{
  11. /**
  12. * 存储bean的Map集合
  13. */
  14. private Map<String,Object> beanMap = new HashMap<>();
  15. /**
  16. * 在该构造方法中,解析myspring.xml文件,创建所有的Bean实例,并将Bean实例存放到Map集合中。
  17. * @param resource 配置文件路径(要求在类路径当中)
  18. */
  19. public ClassPathXmlApplicationContext(String resource) {
  20. }
  21. @Override
  22. public Object getBean(String beanId) {
  23. return beanMap.get(beanId);
  24. }
  25. }

第七步:解析配置文件实例化所有Bean

在ClassPathXmlApplicationContext的构造方法中解析配置文件,获取所有bean的类名,通过反射机制调用无参数构造方法创建Bean。并且将Bean对象存放到Map集合中。

  1. /**
  2. * 在该构造方法中,解析myspring.xml文件,创建所有的Bean实例,并将Bean实例存放到Map集合中。
  3. * @param resource 配置文件路径(要求在类路径当中)
  4. */
  5. public ClassPathXmlApplicationContext(String resource) {
  6. try {
  7. SAXReader reader = new SAXReader();
  8. Document document = reader.read(ClassLoader.getSystemClassLoader().getResourceAsStream(resource));
  9. // 获取所有的bean标签
  10. List<Node> beanNodes = document.selectNodes("//bean");
  11. // 遍历集合
  12. beanNodes.forEach(beanNode -> {
  13. Element beanElt = (Element) beanNode;
  14. // 获取id
  15. String id = beanElt.attributeValue("id");
  16. // 获取className
  17. String className = beanElt.attributeValue("class");
  18. try {
  19. // 通过反射机制创建对象
  20. Class<?> clazz = Class.forName(className);
  21. Constructor<?> defaultConstructor = clazz.getDeclaredConstructor();
  22. Object bean = defaultConstructor.newInstance();
  23. // 存储到Map集合
  24. beanMap.put(id, bean);
  25. } catch (Exception e) {
  26. e.printStackTrace();
  27. }
  28. });
  29. } catch (Exception e) {
  30. e.printStackTrace();
  31. }
  32. }

第八步:测试能否获取到Bean

编写测试程序。

  1. package com.powernode.myspring.test;
  2. import org.junit.Test;
  3. import org.myspringframework.core.ApplicationContext;
  4. import org.myspringframework.core.ClassPathXmlApplicationContext;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className MySpringTest
  9. * @since 1.0
  10. **/
  11. public class MySpringTest {
  12. @Test
  13. public void testMySpring(){
  14. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("myspring.xml");
  15. Object userBean = applicationContext.getBean("userBean");
  16. Object addrBean = applicationContext.getBean("addrBean");
  17. System.out.println(userBean);
  18. System.out.println(addrBean);
  19. }
  20. }

执行结果:
image.png
通过测试Bean已经实例化成功了,属性的值是null,这是我们能够想到的,毕竟我们调用的是无参数构造方法,所以属性都是默认值。
下一步就是我们应该如何给Bean的属性赋值呢?

第九步:给Bean的属性赋值

通过反射机制调用set方法,给Bean的属性赋值。
继续在ClassPathXmlApplicationContext构造方法中编写代码。

  1. package org.myspringframework.core;
  2. import org.dom4j.Document;
  3. import org.dom4j.Element;
  4. import org.dom4j.Node;
  5. import org.dom4j.io.SAXReader;
  6. import java.lang.reflect.Constructor;
  7. import java.lang.reflect.Method;
  8. import java.util.HashMap;
  9. import java.util.List;
  10. import java.util.Map;
  11. /**
  12. * @author 动力节点
  13. * @version 1.0
  14. * @className ClassPathXmlApplicationContext
  15. * @since 1.0
  16. **/
  17. public class ClassPathXmlApplicationContext implements ApplicationContext{
  18. /**
  19. * 存储bean的Map集合
  20. */
  21. private Map<String,Object> beanMap = new HashMap<>();
  22. /**
  23. * 在该构造方法中,解析myspring.xml文件,创建所有的Bean实例,并将Bean实例存放到Map集合中。
  24. * @param resource 配置文件路径(要求在类路径当中)
  25. */
  26. public ClassPathXmlApplicationContext(String resource) {
  27. try {
  28. SAXReader reader = new SAXReader();
  29. Document document = reader.read(ClassLoader.getSystemClassLoader().getResourceAsStream(resource));
  30. // 获取所有的bean标签
  31. List<Node> beanNodes = document.selectNodes("//bean");
  32. // 遍历集合(这里的遍历只实例化Bean,不给属性赋值。为什么要这样做?)
  33. beanNodes.forEach(beanNode -> {
  34. Element beanElt = (Element) beanNode;
  35. // 获取id
  36. String id = beanElt.attributeValue("id");
  37. // 获取className
  38. String className = beanElt.attributeValue("class");
  39. try {
  40. // 通过反射机制创建对象
  41. Class<?> clazz = Class.forName(className);
  42. Constructor<?> defaultConstructor = clazz.getDeclaredConstructor();
  43. Object bean = defaultConstructor.newInstance();
  44. // 存储到Map集合
  45. beanMap.put(id, bean);
  46. } catch (Exception e) {
  47. e.printStackTrace();
  48. }
  49. });
  50. // 再重新遍历集合,这次遍历是为了给Bean的所有属性赋值。
  51. // 思考:为什么不在上面的循环中给Bean的属性赋值,而在这里再重新遍历一次呢?
  52. // 通过这里你是否能够想到Spring是如何解决循环依赖的:实例化和属性赋值分开。
  53. beanNodes.forEach(beanNode -> {
  54. Element beanElt = (Element) beanNode;
  55. // 获取bean的id
  56. String beanId = beanElt.attributeValue("id");
  57. // 获取所有property标签
  58. List<Element> propertyElts = beanElt.elements("property");
  59. // 遍历所有属性
  60. propertyElts.forEach(propertyElt -> {
  61. try {
  62. // 获取属性名
  63. String propertyName = propertyElt.attributeValue("name");
  64. // 获取属性类型
  65. Class<?> propertyType = beanMap.get(beanId).getClass().getDeclaredField(propertyName).getType();
  66. // 获取set方法名
  67. String setMethodName = "set" + propertyName.toUpperCase().charAt(0) + propertyName.substring(1);
  68. // 获取set方法
  69. Method setMethod = beanMap.get(beanId).getClass().getDeclaredMethod(setMethodName, propertyType);
  70. // 获取属性的值,值可能是value,也可能是ref。
  71. // 获取value
  72. String propertyValue = propertyElt.attributeValue("value");
  73. // 获取ref
  74. String propertyRef = propertyElt.attributeValue("ref");
  75. Object propertyVal = null;
  76. if (propertyValue != null) {
  77. // 该属性是简单属性
  78. String propertyTypeSimpleName = propertyType.getSimpleName();
  79. switch (propertyTypeSimpleName) {
  80. case "byte": case "Byte":
  81. propertyVal = Byte.valueOf(propertyValue);
  82. break;
  83. case "short": case "Short":
  84. propertyVal = Short.valueOf(propertyValue);
  85. break;
  86. case "int": case "Integer":
  87. propertyVal = Integer.valueOf(propertyValue);
  88. break;
  89. case "long": case "Long":
  90. propertyVal = Long.valueOf(propertyValue);
  91. break;
  92. case "float": case "Float":
  93. propertyVal = Float.valueOf(propertyValue);
  94. break;
  95. case "double": case "Double":
  96. propertyVal = Double.valueOf(propertyValue);
  97. break;
  98. case "boolean": case "Boolean":
  99. propertyVal = Boolean.valueOf(propertyValue);
  100. break;
  101. case "char": case "Character":
  102. propertyVal = propertyValue.charAt(0);
  103. break;
  104. case "String":
  105. propertyVal = propertyValue;
  106. break;
  107. }
  108. setMethod.invoke(beanMap.get(beanId), propertyVal);
  109. }
  110. if (propertyRef != null) {
  111. // 该属性不是简单属性
  112. setMethod.invoke(beanMap.get(beanId), beanMap.get(propertyRef));
  113. }
  114. } catch (Exception e) {
  115. e.printStackTrace();
  116. }
  117. });
  118. });
  119. } catch (Exception e) {
  120. e.printStackTrace();
  121. }
  122. }
  123. @Override
  124. public Object getBean(String beanId) {
  125. return beanMap.get(beanId);
  126. }
  127. }

重点处理:当property标签中是value怎么办?是ref怎么办?
执行测试程序:
image.png

第十步:打包发布

将多余的类以及配置文件删除,使用maven打包发布。
image.png
image.png

第十一步:站在程序员角度使用myspring框架

新建模块:myspring-test
image.png
引入myspring框架的依赖:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.powernode</groupId>
  7. <artifactId>myspring-test</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.myspringframework</groupId>
  13. <artifactId>myspring</artifactId>
  14. <version>1.0.0</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>junit</groupId>
  18. <artifactId>junit</artifactId>
  19. <version>4.13.2</version>
  20. <scope>test</scope>
  21. </dependency>
  22. </dependencies>
  23. <properties>
  24. <maven.compiler.source>17</maven.compiler.source>
  25. <maven.compiler.target>17</maven.compiler.target>
  26. </properties>
  27. </project>

编写Bean

  1. package com.powernode.myspring.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className UserDao
  6. * @since 1.0
  7. **/
  8. public class UserDao {
  9. public void insert(){
  10. System.out.println("UserDao正在插入数据");
  11. }
  12. }
  1. package com.powernode.myspring.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className UserService
  6. * @since 1.0
  7. **/
  8. public class UserService {
  9. private UserDao userDao;
  10. public void setUserDao(UserDao userDao) {
  11. this.userDao = userDao;
  12. }
  13. public void save(){
  14. System.out.println("UserService开始执行save操作");
  15. userDao.insert();
  16. System.out.println("UserService执行save操作结束");
  17. }
  18. }

编写myspring.xml文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans>
  3. <bean id="userServiceBean" class="com.powernode.myspring.bean.UserService">
  4. <property name="userDao" ref="userDaoBean"/>
  5. </bean>
  6. <bean id="userDaoBean" class="com.powernode.myspring.bean.UserDao"/>
  7. </beans>

编写测试程序

  1. package com.powernode.myspring.test;
  2. import com.powernode.myspring.bean.UserService;
  3. import org.junit.Test;
  4. import org.myspringframework.core.ApplicationContext;
  5. import org.myspringframework.core.ClassPathXmlApplicationContext;
  6. /**
  7. * @author 动力节点
  8. * @version 1.0
  9. * @className MySpringTest
  10. * @since 1.0
  11. **/
  12. public class MySpringTest {
  13. @Test
  14. public void testMySpring(){
  15. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("myspring.xml");
  16. UserService userServiceBean = (UserService) applicationContext.getBean("userServiceBean");
  17. userServiceBean.save();
  18. }
  19. }

执行结果
image.png

十二、Spring IoC注解式开发

12.1 回顾注解

注解的存在主要是为了简化XML的配置。Spring6倡导全注解开发
我们来回顾一下:

  • 第一:注解怎么定义,注解中的属性怎么定义?
  • 第二:注解怎么使用?
  • 第三:通过反射机制怎么读取注解?

注解怎么定义,注解中的属性怎么定义?

  1. package com.powernode.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. @Target(value = {ElementType.TYPE})
  7. @Retention(value = RetentionPolicy.RUNTIME)
  8. public @interface Component {
  9. String value();
  10. }

以上是自定义了一个注解:Component
该注解上面修饰的注解包括:Target注解和Retention注解,这两个注解被称为元注解。
Target注解用来设置Component注解可以出现的位置,以上代表表示Component注解只能用在类和接口上。
Retention注解用来设置Component注解的保持性策略,以上代表Component注解可以被反射机制读取。
String value(); 是Component注解中的一个属性。该属性类型String,属性名是value。
注解怎么使用?

  1. package com.powernode.bean;
  2. import com.powernode.annotation.Component;
  3. @Component(value = "userBean")
  4. public class User {
  5. }

用法简单,语法格式:@注解类型名(属性名=属性值, 属性名=属性值, 属性名=属性值……)
userBean为什么使用双引号括起来,因为value属性是String类型,字符串。
另外如果属性名是value,则在使用的时候可以省略属性名,例如:

  1. package com.powernode.bean;
  2. import com.powernode.annotation.Component;
  3. //@Component(value = "userBean")
  4. @Component("userBean")
  5. public class User {
  6. }

通过反射机制怎么读取注解?
接下来,我们来写一段程序,当Bean类上有Component注解时,则实例化Bean对象,如果没有,则不实例化对象。
我们准备两个Bean,一个上面有注解,一个上面没有注解。

  1. package com.powernode.bean;
  2. import com.powernode.annotation.Component;
  3. @Component("userBean")
  4. public class User {
  5. }
  1. package com.powernode.bean;
  2. public class Vip {
  3. }

假设我们现在只知道包名:com.powernode.bean。至于这个包下有多少个Bean我们不知道。哪些Bean上有注解,哪些Bean上没有注解,这些我们都不知道,如何通过程序全自动化判断。

  1. package com.powernode.test;
  2. import com.powernode.annotation.Component;
  3. import java.io.File;
  4. import java.net.URL;
  5. import java.util.Arrays;
  6. import java.util.Enumeration;
  7. import java.util.HashMap;
  8. import java.util.Map;
  9. /**
  10. * @author 动力节点
  11. * @version 1.0
  12. * @className Test
  13. * @since 1.0
  14. **/
  15. public class Test {
  16. public static void main(String[] args) throws Exception {
  17. // 存放Bean的Map集合。key存储beanId。value存储Bean。
  18. Map<String,Object> beanMap = new HashMap<>();
  19. String packageName = "com.powernode.bean";
  20. String path = packageName.replaceAll("\\.", "/");
  21. URL url = ClassLoader.getSystemClassLoader().getResource(path);
  22. File file = new File(url.getPath());
  23. File[] files = file.listFiles();
  24. Arrays.stream(files).forEach(f -> {
  25. String className = packageName + "." + f.getName().split("\\.")[0];
  26. try {
  27. Class<?> clazz = Class.forName(className);
  28. if (clazz.isAnnotationPresent(Component.class)) {
  29. Component component = clazz.getAnnotation(Component.class);
  30. String beanId = component.value();
  31. Object bean = clazz.newInstance();
  32. beanMap.put(beanId, bean);
  33. }
  34. } catch (Exception e) {
  35. e.printStackTrace();
  36. }
  37. });
  38. System.out.println(beanMap);
  39. }
  40. }

执行结果:
image.png

12.2 声明Bean的注解

负责声明Bean的注解,常见的包括四个:

  • @Component
  • @Controller
  • @Service
  • @Repository

源码如下:

  1. package com.powernode.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. @Target(value = {ElementType.TYPE})
  7. @Retention(value = RetentionPolicy.RUNTIME)
  8. public @interface Component {
  9. String value();
  10. }
  1. package org.springframework.stereotype;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. import org.springframework.core.annotation.AliasFor;
  8. @Target({ElementType.TYPE})
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. @Component
  12. public @interface Controller {
  13. @AliasFor(
  14. annotation = Component.class
  15. )
  16. String value() default "";
  17. }
  1. package org.springframework.stereotype;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. import org.springframework.core.annotation.AliasFor;
  8. @Target({ElementType.TYPE})
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. @Component
  12. public @interface Service {
  13. @AliasFor(
  14. annotation = Component.class
  15. )
  16. String value() default "";
  17. }
  1. package org.springframework.stereotype;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. import org.springframework.core.annotation.AliasFor;
  8. @Target({ElementType.TYPE})
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Documented
  11. @Component
  12. public @interface Repository {
  13. @AliasFor(
  14. annotation = Component.class
  15. )
  16. String value() default "";
  17. }

通过源码可以看到,@Controller、@Service、@Repository这三个注解都是@Component注解的别名。
也就是说:这四个注解的功能都一样。用哪个都可以。
只是为了增强程序的可读性,建议:

  • 控制器类上使用:Controller
  • service类上使用:Service
  • dao类上使用:Repository

他们都是只有一个value属性。value属性用来指定bean的id,也就是bean的名字。
image.png

12.3 Spring注解的使用

如何使用以上的注解呢?

  • 第一步:加入aop的依赖
  • 第二步:在配置文件中添加context命名空间
  • 第三步:在配置文件中指定扫描的包
  • 第四步:在Bean类上使用注解

第一步:加入aop的依赖
我们可以看到当加入spring-context依赖之后,会关联加入aop的依赖。所以这一步不用做。
image.png
第二步:在配置文件中添加context命名空间

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. </beans>

第三步:在配置文件中指定要扫描的包

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. <context:component-scan base-package="com.powernode.spring6.bean"/>
  8. </beans>

第四步:在Bean类上使用注解

  1. package com.powernode.spring6.bean;
  2. import org.springframework.stereotype.Component;
  3. @Component(value = "userBean")
  4. public class User {
  5. }

编写测试程序:

  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.User;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class AnnotationTest {
  7. @Test
  8. public void testBean(){
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  10. User userBean = applicationContext.getBean("userBean", User.class);
  11. System.out.println(userBean);
  12. }
  13. }

执行结果:
image.png
如果注解的属性名是value,那么value是可以省略的。

  1. package com.powernode.spring6.bean;
  2. import org.springframework.stereotype.Component;
  3. @Component("vipBean")
  4. public class Vip {
  5. }
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.Vip;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class AnnotationTest {
  7. @Test
  8. public void testBean(){
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  10. Vip vipBean = applicationContext.getBean("vipBean", Vip.class);
  11. System.out.println(vipBean);
  12. }
  13. }

执行结果:
image.png
如果把value属性彻底去掉,spring会被Bean自动取名吗?会的。并且默认名字的规律是:Bean类名首字母小写即可。

  1. package com.powernode.spring6.bean;
  2. import org.springframework.stereotype.Component;
  3. @Component
  4. public class BankDao {
  5. }

也就是说,这个BankDao的bean的名字为:bankDao
测试一下

  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.BankDao;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class AnnotationTest {
  7. @Test
  8. public void testBean(){
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  10. BankDao bankDao = applicationContext.getBean("bankDao", BankDao.class);
  11. System.out.println(bankDao);
  12. }
  13. }

执行结果:
image.png
我们将Component注解换成其它三个注解,看看是否可以用:

  1. package com.powernode.spring6.bean;
  2. import org.springframework.stereotype.Controller;
  3. @Controller
  4. public class BankDao {
  5. }

执行结果:
image.png
剩下的两个注解大家可以测试一下。
如果是多个包怎么办?有两种解决方案:

  • 第一种:在配置文件中指定多个包,用逗号隔开。
  • 第二种:指定多个包的共同父包。

先来测试一下逗号(英文)的方式:
创建一个新的包:bean2,定义一个Bean类。

  1. package com.powernode.spring6.bean2;
  2. import org.springframework.stereotype.Service;
  3. @Service
  4. public class Order {
  5. }

配置文件修改:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. <context:component-scan base-package="com.powernode.spring6.bean,com.powernode.spring6.bean2"/>
  8. </beans>

测试程序:

  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.bean.BankDao;
  3. import com.powernode.spring6.bean2.Order;
  4. import org.junit.Test;
  5. import org.springframework.context.ApplicationContext;
  6. import org.springframework.context.support.ClassPathXmlApplicationContext;
  7. public class AnnotationTest {
  8. @Test
  9. public void testBean(){
  10. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  11. BankDao bankDao = applicationContext.getBean("bankDao", BankDao.class);
  12. System.out.println(bankDao);
  13. Order order = applicationContext.getBean("order", Order.class);
  14. System.out.println(order);
  15. }
  16. }

执行结果:
image.png
我们再来看看,指定共同的父包行不行:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. <context:component-scan base-package="com.powernode.spring6"/>
  8. </beans>

执行测试程序:
image.png

12.4 选择性实例化Bean

假设在某个包下有很多Bean,有的Bean上标注了Component,有的标注了Controller,有的标注了Service,有的标注了Repository,现在由于某种特殊业务的需要,只允许其中所有的Controller参与Bean管理,其他的都不实例化。这应该怎么办呢?

  1. package com.powernode.spring6.bean3;
  2. import org.springframework.stereotype.Component;
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.stereotype.Repository;
  5. import org.springframework.stereotype.Service;
  6. @Component
  7. public class A {
  8. public A() {
  9. System.out.println("A的无参数构造方法执行");
  10. }
  11. }
  12. @Controller
  13. class B {
  14. public B() {
  15. System.out.println("B的无参数构造方法执行");
  16. }
  17. }
  18. @Service
  19. class C {
  20. public C() {
  21. System.out.println("C的无参数构造方法执行");
  22. }
  23. }
  24. @Repository
  25. class D {
  26. public D() {
  27. System.out.println("D的无参数构造方法执行");
  28. }
  29. }
  30. @Controller
  31. class E {
  32. public E() {
  33. System.out.println("E的无参数构造方法执行");
  34. }
  35. }
  36. @Controller
  37. class F {
  38. public F() {
  39. System.out.println("F的无参数构造方法执行");
  40. }
  41. }

我只想实例化bean3包下的Controller。配置文件这样写:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. <context:component-scan base-package="com.powernode.spring6.bean3" use-default-filters="false">
  8. <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
  9. </context:component-scan>
  10. </beans>

use-default-filters=”true” 表示:使用spring默认的规则,只要有Component、Controller、Service、Repository中的任意一个注解标注,则进行实例化。
use-default-filters=”false” 表示:不再spring默认实例化规则,即使有Component、Controller、Service、Repository这些注解标注,也不再实例化。
表示只有Controller进行实例化。

  1. @Test
  2. public void testChoose(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-choose.xml");
  4. }

执行结果:
image.png
也可以将use-default-filters设置为true(不写就是true),并且采用exclude-filter方式排出哪些注解标注的Bean不参与实例化:

  1. <context:component-scan base-package="com.powernode.spring6.bean3">
  2. <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/>
  3. <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service"/>
  4. <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
  5. </context:component-scan>

执行测试程序:
image.png

12.5 负责注入的注解

@Component @Controller @Service @Repository 这四个注解是用来声明Bean的,声明后这些Bean将被实例化。接下来我们看一下,如何给Bean的属性赋值。给Bean属性赋值需要用到这些注解:

  • @Value
  • @Autowired
  • @Qualifier
  • @Resource

    12.5.1 @Value

    当属性的类型是简单类型时,可以使用@Value注解进行注入。 ```java package com.powernode.spring6.bean4;

import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component;

@Component public class User { @Value(value = “zhangsan”) private String name; @Value(“20”) private int age;

  1. @Override
  2. public String toString() {
  3. return "User{" +
  4. "name='" + name + '\'' +
  5. ", age=" + age +
  6. '}';
  7. }

}

  1. 开启包扫描:
  2. ```xml
  3. <?xml version="1.0" encoding="UTF-8"?>
  4. <beans xmlns="http://www.springframework.org/schema/beans"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xmlns:context="http://www.springframework.org/schema/context"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  9. <context:component-scan base-package="com.powernode.spring6.bean4"/>
  10. </beans>
  1. @Test
  2. public void testValue(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-injection.xml");
  4. Object user = applicationContext.getBean("user");
  5. System.out.println(user);
  6. }

执行结果:
image.png
通过以上代码可以发现,我们并没有给属性提供setter方法,但仍然可以完成属性赋值。
如果提供setter方法,并且在setter方法上添加@Value注解,可以完成注入吗?尝试一下:

  1. package com.powernode.spring6.bean4;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.stereotype.Component;
  4. @Component
  5. public class User {
  6. private String name;
  7. private int age;
  8. @Value("李四")
  9. public void setName(String name) {
  10. this.name = name;
  11. }
  12. @Value("30")
  13. public void setAge(int age) {
  14. this.age = age;
  15. }
  16. @Override
  17. public String toString() {
  18. return "User{" +
  19. "name='" + name + '\'' +
  20. ", age=" + age +
  21. '}';
  22. }
  23. }

执行结果:
image.png
通过测试可以得知,@Value注解可以直接使用在属性上,也可以使用在setter方法上。都是可以的。都可以完成属性的赋值。
为了简化代码,以后我们一般不提供setter方法,直接在属性上使用@Value注解完成属性赋值。
出于好奇,我们再来测试一下,是否能够通过构造方法完成注入:

  1. package com.powernode.spring6.bean4;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.stereotype.Component;
  4. @Component
  5. public class User {
  6. private String name;
  7. private int age;
  8. public User(@Value("隔壁老王") String name, @Value("33") int age) {
  9. this.name = name;
  10. this.age = age;
  11. }
  12. @Override
  13. public String toString() {
  14. return "User{" +
  15. "name='" + name + '\'' +
  16. ", age=" + age +
  17. '}';
  18. }
  19. }

执行结果:
image.png
通过测试得知:@Value注解可以出现在属性上、setter方法上、以及构造方法的形参上。可见Spring给我们提供了多样化的注入。太灵活了。

12.5.2 @Autowired与@Qualifier

@Autowired注解可以用来注入非简单类型。被翻译为:自动连线的,或者自动装配。
单独使用@Autowired注解,默认根据类型装配。【默认是byType】
看一下它的源码:

  1. package org.springframework.beans.factory.annotation;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. @Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE})
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Documented
  10. public @interface Autowired {
  11. boolean required() default true;
  12. }

源码中有两处需要注意:

  • 第一处:该注解可以标注在哪里?
    • 构造方法上
    • 方法上
    • 形参上
    • 属性上
    • 注解上
  • 第二处:该注解有一个required属性,默认值是true,表示在注入的时候要求被注入的Bean必须是存在的,如果不存在则报错。如果required属性设置为false,表示注入的Bean存在或者不存在都没关系,存在的话就注入,不存在的话,也不报错。

我们先在属性上使用@Autowired注解:

  1. package com.powernode.spring6.dao;
  2. public interface UserDao {
  3. void insert();
  4. }
  1. package com.powernode.spring6.dao;
  2. import org.springframework.stereotype.Repository;
  3. @Repository //纳入bean管理
  4. public class UserDaoForMySQL implements UserDao{
  5. @Override
  6. public void insert() {
  7. System.out.println("正在向mysql数据库插入User数据");
  8. }
  9. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. @Service // 纳入bean管理
  6. public class UserService {
  7. @Autowired // 在属性上注入
  8. private UserDao userDao;
  9. // 没有提供构造方法和setter方法。
  10. public void save(){
  11. userDao.insert();
  12. }
  13. }
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  6. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
  7. <context:component-scan base-package="com.powernode.spring6.dao,com.powernode.spring6.service"/>
  8. </beans>
  1. @Test
  2. public void testAutowired(){
  3. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-injection.xml");
  4. UserService userService = applicationContext.getBean("userService", UserService.class);
  5. userService.save();
  6. }

执行结果:
image.png
以上构造方法和setter方法都没有提供,经过测试,仍然可以注入成功。
接下来,再来测试一下@Autowired注解出现在setter方法上:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. private UserDao userDao;
  8. @Autowired
  9. public void setUserDao(UserDao userDao) {
  10. this.userDao = userDao;
  11. }
  12. public void save(){
  13. userDao.insert();
  14. }
  15. }

执行结果:
image.png
我们再来看看能不能出现在构造方法上:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. private UserDao userDao;
  8. @Autowired
  9. public UserService(UserDao userDao) {
  10. this.userDao = userDao;
  11. }
  12. public void save(){
  13. userDao.insert();
  14. }
  15. }

执行结果:
image.png
再来看看,这个注解能不能只标注在构造方法的形参上:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. private UserDao userDao;
  8. public UserService(@Autowired UserDao userDao) {
  9. this.userDao = userDao;
  10. }
  11. public void save(){
  12. userDao.insert();
  13. }
  14. }

执行结果:
image.png
还有更劲爆的,当有参数的构造方法只有一个时,@Autowired注解可以省略。

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.stereotype.Service;
  4. @Service
  5. public class UserService {
  6. private UserDao userDao;
  7. public UserService(UserDao userDao) {
  8. this.userDao = userDao;
  9. }
  10. public void save(){
  11. userDao.insert();
  12. }
  13. }

执行结果:
image.png
当然,如果有多个构造方法,@Autowired肯定是不能省略的。

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.stereotype.Service;
  4. @Service
  5. public class UserService {
  6. private UserDao userDao;
  7. public UserService(UserDao userDao) {
  8. this.userDao = userDao;
  9. }
  10. public UserService(){
  11. }
  12. public void save(){
  13. userDao.insert();
  14. }
  15. }

执行结果:
image.png
到此为止,我们已经清楚@Autowired注解可以出现在哪些位置了。
@Autowired注解默认是byType进行注入的,也就是说根据类型注入的,如果以上程序中,UserDao接口还有另外一个实现类,会出现问题吗?

  1. package com.powernode.spring6.dao;
  2. import org.springframework.stereotype.Repository;
  3. @Repository //纳入bean管理
  4. public class UserDaoForOracle implements UserDao{
  5. @Override
  6. public void insert() {
  7. System.out.println("正在向Oracle数据库插入User数据");
  8. }
  9. }

当你写完这个新的实现类之后,此时IDEA工具已经提示错误信息了:
image.png
错误信息中说:不能装配,UserDao这个Bean的数量大于1.
怎么解决这个问题呢?当然要byName,根据名称进行装配了。
@Autowired注解和@Qualifier注解联合起来才可以根据名称进行装配,在@Qualifier注解中指定Bean名称。

  1. package com.powernode.spring6.dao;
  2. import org.springframework.stereotype.Repository;
  3. @Repository // 这里没有给bean起名,默认名字是:userDaoForOracle
  4. public class UserDaoForOracle implements UserDao{
  5. @Override
  6. public void insert() {
  7. System.out.println("正在向Oracle数据库插入User数据");
  8. }
  9. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.beans.factory.annotation.Qualifier;
  5. import org.springframework.stereotype.Service;
  6. @Service
  7. public class UserService {
  8. private UserDao userDao;
  9. @Autowired
  10. @Qualifier("userDaoForOracle") // 这个是bean的名字。
  11. public void setUserDao(UserDao userDao) {
  12. this.userDao = userDao;
  13. }
  14. public void save(){
  15. userDao.insert();
  16. }
  17. }

执行结果:
image.png
总结:

  • @Autowired注解可以出现在:属性上、构造方法上、构造方法的参数上、setter方法上。
  • 当带参数的构造方法只有一个,@Autowired注解可以省略。
  • @Autowired注解默认根据类型注入。如果要根据名称注入的话,需要配合@Qualifier注解一起使用。

    12.5.3 @Resource

    @Resource注解也可以完成非简单类型注入。那它和@Autowired注解有什么区别?

  • @Resource注解是JDK扩展包中的,也就是说属于JDK的一部分。所以该注解是标准注解,更加具有通用性。(JSR-250标准中制定的注解类型。JSR是Java规范提案。)

  • @Autowired注解是Spring框架自己的。
  • @Resource注解默认根据名称装配byName,未指定name时,使用属性名作为name。通过name找不到的话会自动启动通过类型byType装配。
  • @Autowired注解默认根据类型装配byType,如果想根据名称装配,需要配合@Qualifier注解一起用。
  • @Resource注解用在属性上、setter方法上。
  • @Autowired注解用在属性上、setter方法上、构造方法上、构造方法参数上。

@Resource注解属于JDK扩展包,所以不在JDK当中,需要额外引入以下依赖:【如果是JDK8的话不需要额外引入依赖。高于JDK11或低于JDK8需要引入以下依赖。

  1. <dependency>
  2. <groupId>jakarta.annotation</groupId>
  3. <artifactId>jakarta.annotation-api</artifactId>
  4. <version>2.1.1</version>
  5. </dependency>

一定要注意:如果你用Spring6,要知道Spring6不再支持JavaEE,它支持的是JakartaEE9。(Oracle把JavaEE贡献给Apache了,Apache把JavaEE的名字改成JakartaEE了,大家之前所接触的所有的 javax. 包名统一修改为 jakarta.包名了。)

  1. <dependency>
  2. <groupId>javax.annotation</groupId>
  3. <artifactId>javax.annotation-api</artifactId>
  4. <version>1.3.2</version>
  5. </dependency>

@Resource注解的源码如下:
image.png
测试一下:

  1. package com.powernode.spring6.dao;
  2. import org.springframework.stereotype.Repository;
  3. @Repository("xyz")
  4. public class UserDaoForOracle implements UserDao{
  5. @Override
  6. public void insert() {
  7. System.out.println("正在向Oracle数据库插入User数据");
  8. }
  9. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import jakarta.annotation.Resource;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. @Resource(name = "xyz")
  8. private UserDao userDao;
  9. public void save(){
  10. userDao.insert();
  11. }
  12. }

执行测试程序:
image.png
我们把UserDaoForOracle的名字xyz修改为userDao,让这个Bean的名字和UserService类中的UserDao属性名一致:

  1. package com.powernode.spring6.dao;
  2. import org.springframework.stereotype.Repository;
  3. @Repository("userDao")
  4. public class UserDaoForOracle implements UserDao{
  5. @Override
  6. public void insert() {
  7. System.out.println("正在向Oracle数据库插入User数据");
  8. }
  9. }
  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import jakarta.annotation.Resource;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. @Resource
  8. private UserDao userDao;
  9. public void save(){
  10. userDao.insert();
  11. }
  12. }

执行测试程序:
image.png
通过测试得知,当@Resource注解使用时没有指定name的时候,还是根据name进行查找,这个name是属性名。
接下来把UserService类中的属性名修改一下:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import jakarta.annotation.Resource;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. @Resource
  8. private UserDao userDao2;
  9. public void save(){
  10. userDao2.insert();
  11. }
  12. }

执行结果:
image.png
根据异常信息得知:显然当通过name找不到的时候,自然会启动byType进行注入。以上的错误是因为UserDao接口下有两个实现类导致的。所以根据类型注入就会报错。
我们再来看@Resource注解使用在setter方法上可以吗?

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import jakarta.annotation.Resource;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. private UserDao userDao;
  8. @Resource
  9. public void setUserDao(UserDao userDao) {
  10. this.userDao = userDao;
  11. }
  12. public void save(){
  13. userDao.insert();
  14. }
  15. }

注意这个setter方法的方法名,setUserDao去掉set之后,将首字母变小写userDao,userDao就是name
执行结果:
image.png
当然,也可以指定name:

  1. package com.powernode.spring6.service;
  2. import com.powernode.spring6.dao.UserDao;
  3. import jakarta.annotation.Resource;
  4. import org.springframework.stereotype.Service;
  5. @Service
  6. public class UserService {
  7. private UserDao userDao;
  8. @Resource(name = "userDaoForMySQL")
  9. public void setUserDao(UserDao userDao) {
  10. this.userDao = userDao;
  11. }
  12. public void save(){
  13. userDao.insert();
  14. }
  15. }

执行结果:
image.png
一句话总结@Resource注解:默认byName注入,没有指定name时把属性名当做name,根据name找不到时,才会byType注入。byType注入时,某种类型的Bean只能有一个。

12.6 全注解式开发

所谓的全注解开发就是不再使用spring配置文件了。写一个配置类来代替配置文件。

  1. package com.powernode.spring6.config;
  2. import org.springframework.context.annotation.ComponentScan;
  3. import org.springframework.context.annotation.ComponentScans;
  4. import org.springframework.context.annotation.Configuration;
  5. @Configuration
  6. @ComponentScan({"com.powernode.spring6.dao", "com.powernode.spring6.service"})
  7. public class Spring6Configuration {
  8. }

编写测试程序:不再new ClassPathXmlApplicationContext()对象了。

  1. @Test
  2. public void testNoXml(){
  3. ApplicationContext applicationContext = new AnnotationConfigApplicationContext(Spring6Configuration.class);
  4. UserService userService = applicationContext.getBean("userService", UserService.class);
  5. userService.save();
  6. }

执行结果:
image.png

十三、JdbcTemplate

JdbcTemplate是Spring提供的一个JDBC模板类,是对JDBC的封装,简化JDBC代码。
当然,你也可以不用,可以让Spring集成其它的ORM框架,例如:MyBatis、Hibernate等。
接下来我们简单来学习一下,使用JdbcTemplate完成增删改查。

13.1 环境准备

数据库表:t_user
image.png
IDEA中新建模块:spring6-007-jdbc
image.png
引入相关依赖:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.powernode</groupId>
  7. <artifactId>spring6-007-jdbc</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <repositories>
  11. <repository>
  12. <id>repository.spring.milestone</id>
  13. <name>Spring Milestone Repository</name>
  14. <url>https://repo.spring.io/milestone</url>
  15. </repository>
  16. </repositories>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework</groupId>
  20. <artifactId>spring-context</artifactId>
  21. <version>6.0.0-M2</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>junit</groupId>
  25. <artifactId>junit</artifactId>
  26. <version>4.13.2</version>
  27. <scope>test</scope>
  28. </dependency>
  29. <!--新增的依赖:mysql驱动-->
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. <version>8.0.30</version>
  34. </dependency>
  35. <!--新增的依赖:spring jdbc,这个依赖中有JdbcTemplate-->
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-jdbc</artifactId>
  39. <version>6.0.0-M2</version>
  40. </dependency>
  41. </dependencies>
  42. <properties>
  43. <maven.compiler.source>17</maven.compiler.source>
  44. <maven.compiler.target>17</maven.compiler.target>
  45. </properties>
  46. </project>

准备实体类:表t_user对应的实体类User。

  1. package com.powernode.spring6.bean;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className User
  6. * @since 1.0
  7. **/
  8. public class User {
  9. private Integer id;
  10. private String realName;
  11. private Integer age;
  12. @Override
  13. public String toString() {
  14. return "User{" +
  15. "id=" + id +
  16. ", realName='" + realName + '\'' +
  17. ", age=" + age +
  18. '}';
  19. }
  20. public User() {
  21. }
  22. public User(Integer id, String realName, Integer age) {
  23. this.id = id;
  24. this.realName = realName;
  25. this.age = age;
  26. }
  27. public Integer getId() {
  28. return id;
  29. }
  30. public void setId(Integer id) {
  31. this.id = id;
  32. }
  33. public String getRealName() {
  34. return realName;
  35. }
  36. public void setRealName(String realName) {
  37. this.realName = realName;
  38. }
  39. public Integer getAge() {
  40. return age;
  41. }
  42. public void setAge(Integer age) {
  43. this.age = age;
  44. }
  45. }

编写Spring配置文件:
JdbcTemplate是Spring提供好的类,这类的完整类名是:org.springframework.jdbc.core.JdbcTemplate
我们怎么使用这个类呢?new对象就可以了。怎么new对象,Spring最在行了。直接将这个类配置到Spring配置文件中,纳入Bean管理即可。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"></bean>
  6. </beans>

我们来看一下这个JdbcTemplate源码:
image.png
image.png
可以看到JdbcTemplate中有一个DataSource属性,这个属性是数据源,我们都知道连接数据库需要Connection对象,而生成Connection对象是数据源负责的。所以我们需要给JdbcTemplate设置数据源属性。
所有的数据源都是要实现javax.sql.DataSource接口的。这个数据源可以自己写一个,也可以用写好的,比如:阿里巴巴的德鲁伊连接池,c3p0,dbcp等。我们这里自己先手写一个数据源。

  1. package com.powernode.spring6.jdbc;
  2. import javax.sql.DataSource;
  3. import java.io.PrintWriter;
  4. import java.sql.Connection;
  5. import java.sql.DriverManager;
  6. import java.sql.SQLException;
  7. import java.sql.SQLFeatureNotSupportedException;
  8. import java.util.logging.Logger;
  9. /**
  10. * @author 动力节点
  11. * @version 1.0
  12. * @className MyDataSource
  13. * @since 1.0
  14. **/
  15. public class MyDataSource implements DataSource {
  16. // 添加4个属性
  17. private String driver;
  18. private String url;
  19. private String username;
  20. private String password;
  21. // 提供4个setter方法
  22. public void setDriver(String driver) {
  23. this.driver = driver;
  24. }
  25. public void setUrl(String url) {
  26. this.url = url;
  27. }
  28. public void setUsername(String username) {
  29. this.username = username;
  30. }
  31. public void setPassword(String password) {
  32. this.password = password;
  33. }
  34. // 重点写怎么获取Connection对象就行。其他方法不用管。
  35. @Override
  36. public Connection getConnection() throws SQLException {
  37. try {
  38. Class.forName(driver);
  39. Connection conn = DriverManager.getConnection(url, username, password);
  40. return conn;
  41. } catch (Exception e) {
  42. e.printStackTrace();
  43. }
  44. return null;
  45. }
  46. @Override
  47. public Connection getConnection(String username, String password) throws SQLException {
  48. return null;
  49. }
  50. @Override
  51. public PrintWriter getLogWriter() throws SQLException {
  52. return null;
  53. }
  54. @Override
  55. public void setLogWriter(PrintWriter out) throws SQLException {
  56. }
  57. @Override
  58. public void setLoginTimeout(int seconds) throws SQLException {
  59. }
  60. @Override
  61. public int getLoginTimeout() throws SQLException {
  62. return 0;
  63. }
  64. @Override
  65. public Logger getParentLogger() throws SQLFeatureNotSupportedException {
  66. return null;
  67. }
  68. @Override
  69. public <T> T unwrap(Class<T> iface) throws SQLException {
  70. return null;
  71. }
  72. @Override
  73. public boolean isWrapperFor(Class<?> iface) throws SQLException {
  74. return false;
  75. }
  76. }

写完数据源,我们需要把这个数据源传递给JdbcTemplate。因为JdbcTemplate中有一个DataSource属性:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  5. <bean id="myDataSource" class="com.powernode.spring6.jdbc.MyDataSource">
  6. <property name="driver" value="com.mysql.cj.jdbc.Driver"/>
  7. <property name="url" value="jdbc:mysql://localhost:3306/spring6"/>
  8. <property name="username" value="root"/>
  9. <property name="password" value="123456"/>
  10. </bean>
  11. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
  12. <property name="dataSource" ref="myDataSource"/>
  13. </bean>
  14. </beans>

到这里环境就准备好了。

13.2 新增

编写测试程序:

  1. package com.powernode.spring6.test;
  2. import org.junit.Test;
  3. import org.springframework.context.ApplicationContext;
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;
  5. import org.springframework.jdbc.core.JdbcTemplate;
  6. /**
  7. * @author 动力节点
  8. * @version 1.0
  9. * @className JdbcTest
  10. * @since 1.0
  11. **/
  12. public class JdbcTest {
  13. @Test
  14. public void testInsert(){
  15. // 获取JdbcTemplate对象
  16. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
  17. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
  18. // 执行插入操作
  19. // 注意:insert delete update的sql语句,都是执行update方法。
  20. String sql = "insert into t_user(id,real_name,age) values(?,?,?)";
  21. int count = jdbcTemplate.update(sql, null, "张三", 30);
  22. System.out.println("插入的记录条数:" + count);
  23. }
  24. }

update方法有两个参数:

  • 第一个参数:要执行的SQL语句。(SQL语句中可能会有占位符 ? )
  • 第二个参数:可变长参数,参数的个数可以是0个,也可以是多个。一般是SQL语句中有几个问号,则对应几个参数。

    13.3 修改

    1. @Test
    2. public void testUpdate(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 执行更新操作
    7. String sql = "update t_user set real_name = ?, age = ? where id = ?";
    8. int count = jdbcTemplate.update(sql, "张三丰", 55, 1);
    9. System.out.println("更新的记录条数:" + count);
    10. }

    执行结果:
    image.png

    13.4 删除

    1. @Test
    2. public void testDelete(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 执行delete
    7. String sql = "delete from t_user where id = ?";
    8. int count = jdbcTemplate.update(sql, 1);
    9. System.out.println("删除了几条记录:" + count);
    10. }

    执行结果:
    image.png

    13.5 查询一个对象

    1. @Test
    2. public void testSelectOne(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 执行select
    7. String sql = "select id, real_name, age from t_user where id = ?";
    8. User user = jdbcTemplate.queryForObject(sql, new BeanPropertyRowMapper<>(User.class), 2);
    9. System.out.println(user);
    10. }

    执行结果:
    image.png
    queryForObject方法三个参数:

  • 第一个参数:sql语句

  • 第二个参数:Bean属性值和数据库记录行的映射对象。在构造方法中指定映射的对象类型。
  • 第三个参数:可变长参数,给sql语句的占位符问号传值。

    13.6 查询多个对象

    1. @Test
    2. public void testSelectAll(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 执行select
    7. String sql = "select id, real_name, age from t_user";
    8. List<User> users = jdbcTemplate.query(sql, new BeanPropertyRowMapper<>(User.class));
    9. System.out.println(users);
    10. }

    执行结果:
    image.png

    13.7 查询一个值

    1. @Test
    2. public void testSelectOneValue(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 执行select
    7. String sql = "select count(1) from t_user";
    8. Integer count = jdbcTemplate.queryForObject(sql, int.class); // 这里用Integer.class也可以
    9. System.out.println("总记录条数:" + count);
    10. }

    执行结果:
    image.png

    13.8 批量添加

    1. @Test
    2. public void testAddBatch(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 批量添加
    7. String sql = "insert into t_user(id,real_name,age) values(?,?,?)";
    8. Object[] objs1 = {null, "小花", 20};
    9. Object[] objs2 = {null, "小明", 21};
    10. Object[] objs3 = {null, "小刚", 22};
    11. List<Object[]> list = new ArrayList<>();
    12. list.add(objs1);
    13. list.add(objs2);
    14. list.add(objs3);
    15. int[] count = jdbcTemplate.batchUpdate(sql, list);
    16. System.out.println(Arrays.toString(count));
    17. }

    执行结果:
    image.png

    13.9 批量修改

    1. @Test
    2. public void testUpdateBatch(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 批量修改
    7. String sql = "update t_user set real_name = ?, age = ? where id = ?";
    8. Object[] objs1 = {"小花11", 10, 2};
    9. Object[] objs2 = {"小明22", 12, 3};
    10. Object[] objs3 = {"小刚33", 9, 4};
    11. List<Object[]> list = new ArrayList<>();
    12. list.add(objs1);
    13. list.add(objs2);
    14. list.add(objs3);
    15. int[] count = jdbcTemplate.batchUpdate(sql, list);
    16. System.out.println(Arrays.toString(count));
    17. }

    执行结果:
    image.png

    13.10 批量删除

    1. @Test
    2. public void testDeleteBatch(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. // 批量删除
    7. String sql = "delete from t_user where id = ?";
    8. Object[] objs1 = {2};
    9. Object[] objs2 = {3};
    10. Object[] objs3 = {4};
    11. List<Object[]> list = new ArrayList<>();
    12. list.add(objs1);
    13. list.add(objs2);
    14. list.add(objs3);
    15. int[] count = jdbcTemplate.batchUpdate(sql, list);
    16. System.out.println(Arrays.toString(count));
    17. }

    执行结果:
    image.png

    13.11 使用回调函数

    使用回调函数,可以参与的更加细节:

    1. @Test
    2. public void testCallback(){
    3. // 获取JdbcTemplate对象
    4. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    5. JdbcTemplate jdbcTemplate = applicationContext.getBean("jdbcTemplate", JdbcTemplate.class);
    6. String sql = "select id, real_name, age from t_user where id = ?";
    7. User user = jdbcTemplate.execute(sql, new PreparedStatementCallback<User>() {
    8. @Override
    9. public User doInPreparedStatement(PreparedStatement ps) throws SQLException, DataAccessException {
    10. User user = null;
    11. ps.setInt(1, 5);
    12. ResultSet rs = ps.executeQuery();
    13. if (rs.next()) {
    14. user = new User();
    15. user.setId(rs.getInt("id"));
    16. user.setRealName(rs.getString("real_name"));
    17. user.setAge(rs.getInt("age"));
    18. }
    19. return user;
    20. }
    21. });
    22. System.out.println(user);
    23. }

    执行结果:
    image.png

    13.12 使用德鲁伊连接池

    之前数据源是用我们自己写的。也可以使用别人写好的。例如比较牛的德鲁伊连接池。
    第一步:引入德鲁伊连接池的依赖。(毕竟是别人写的)

    1. <dependency>
    2. <groupId>com.alibaba</groupId>
    3. <artifactId>druid</artifactId>
    4. <version>1.1.8</version>
    5. </dependency>

    第二步:将德鲁伊中的数据源配置到spring配置文件中。和配置我们自己写的一样。

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    5. <bean id="druidDataSource" class="com.alibaba.druid.pool.DruidDataSource">
    6. <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
    7. <property name="url" value="jdbc:mysql://localhost:3306/spring6"/>
    8. <property name="username" value="root"/>
    9. <property name="password" value="root"/>
    10. </bean>
    11. <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
    12. <property name="dataSource" ref="druidDataSource"/>
    13. </bean>
    14. </beans>

    测试结果:
    image.png

十四、GoF之代理模式

14.1 对代理模式的理解

生活场景1:牛村的牛二看上了隔壁村小花,牛二不好意思直接找小花,于是牛二找来了媒婆王妈妈。这里面就有一个非常典型的代理模式。牛二不能和小花直接对接,只能找一个中间人。其中王妈妈是代理类,牛二是目标类。王妈妈代替牛二和小花先见个面。(现实生活中的婚介所)【在程序中,对象A和对象B无法直接交互时。】
生活场景2:你刚到北京,要租房子,可以自己找,也可以找链家帮你找。其中链家是代理类,你是目标类。你们两个都有共同的行为:找房子。不过链家除了满足你找房子,另外会收取一些费用的。(现实生活中的房产中介)【在程序中,功能需要增强时。】
西游记场景:八戒和高小姐的故事。八戒要强抢民女高翠兰。悟空得知此事之后怎么做的?悟空幻化成高小姐的模样。代替高小姐与八戒会面。其中八戒是客户端程序。悟空是代理类。高小姐是目标类。那天夜里,在八戒眼里,眼前的就是高小姐,对于八戒来说,他是不知道眼前的高小姐是悟空幻化的,在他内心里这就是高小姐。所以悟空代替高小姐和八戒亲了嘴儿。这是非常典型的代理模式实现的保护机制。代理模式中有一个非常重要的特点:对于客户端程序来说,使用代理对象时就像在使用目标对象一样。【在程序中,目标需要被保护时】
业务场景:系统中有A、B、C三个模块,使用这些模块的前提是需要用户登录,也就是说在A模块中要编写判断登录的代码,B模块中也要编写,C模块中还要编写,这些判断登录的代码反复出现,显然代码没有得到复用,可以为A、B、C三个模块提供一个代理,在代理当中写一次登录判断即可。代理的逻辑是:请求来了之后,判断用户是否登录了,如果已经登录了,则执行对应的目标,如果没有登录则跳转到登录页面。【在程序中,目标不但受到保护,并且代码也得到了复用。】
代理模式是GoF23种设计模式之一。属于结构型设计模式。
代理模式的作用是:为其他对象提供一种代理以控制对这个对象的访问。在某些情况下,一个客户不想或者不能直接引用一个对象,此时可以通过一个称之为“代理”的第三者来实现间接引用。代理对象可以在客户端和目标对象之间起到中介的作用,并且可以通过代理对象去掉客户不应该看到的内容和服务或者添加客户需要的额外服务。 通过引入一个新的对象来实现对真实对象的操作或者将新的对象作为真实对象的一个替身,这种实现机制即为代理模式,通过引入代理对象来间接访问一个对象,这就是代理模式的模式动机。
代理模式中的角色:

  • 代理类(代理主题)
  • 目标类(真实主题)
  • 代理类和目标类的公共接口(抽象主题):客户端在使用代理类时就像在使用目标类,不被客户端所察觉,所以代理类和目标类要有共同的行为,也就是实现共同的接口。

代理模式的类图:
image.png
代理模式在代码实现上,包括两种形式:

  • 静态代理
  • 动态代理

    14.2 静态代理

    现在有这样一个接口和实现类: ```java package com.powernode.mall.service;

/**

  • 订单接口
  • @author 动力节点
  • @version 1.0
  • @className OrderService
  • @since 1.0 / public interface OrderService { /

    • 生成订单 */ void generate();

      /**

    • 查看订单详情 */ void detail();

      /**

    • 修改订单 */ void modify(); }
  1. ```java
  2. package com.powernode.mall.service.impl;
  3. import com.powernode.mall.service.OrderService;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className OrderServiceImpl
  8. * @since 1.0
  9. **/
  10. public class OrderServiceImpl implements OrderService {
  11. @Override
  12. public void generate() {
  13. try {
  14. Thread.sleep(1234);
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. System.out.println("订单已生成");
  19. }
  20. @Override
  21. public void detail() {
  22. try {
  23. Thread.sleep(2541);
  24. } catch (InterruptedException e) {
  25. e.printStackTrace();
  26. }
  27. System.out.println("订单信息如下:******");
  28. }
  29. @Override
  30. public void modify() {
  31. try {
  32. Thread.sleep(1010);
  33. } catch (InterruptedException e) {
  34. e.printStackTrace();
  35. }
  36. System.out.println("订单已修改");
  37. }
  38. }

其中Thread.sleep()方法的调用是为了模拟操作耗时。
项目已上线,并且运行正常,只是客户反馈系统有一些地方运行较慢,要求项目组对系统进行优化。于是项目负责人就下达了这个需求。首先需要搞清楚是哪些业务方法耗时较长,于是让我们统计每个业务方法所耗费的时长。如果是你,你该怎么做呢?
第一种方案:直接修改Java源代码,在每个业务方法中添加统计逻辑,如下:

  1. package com.powernode.mall.service.impl;
  2. import com.powernode.mall.service.OrderService;
  3. /**
  4. * @author 动力节点
  5. * @version 1.0
  6. * @className OrderServiceImpl
  7. * @since 1.0
  8. **/
  9. public class OrderServiceImpl implements OrderService {
  10. @Override
  11. public void generate() {
  12. long begin = System.currentTimeMillis();
  13. try {
  14. Thread.sleep(1234);
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. System.out.println("订单已生成");
  19. long end = System.currentTimeMillis();
  20. System.out.println("耗费时长"+(end - begin)+"毫秒");
  21. }
  22. @Override
  23. public void detail() {
  24. long begin = System.currentTimeMillis();
  25. try {
  26. Thread.sleep(2541);
  27. } catch (InterruptedException e) {
  28. e.printStackTrace();
  29. }
  30. System.out.println("订单信息如下:******");
  31. long end = System.currentTimeMillis();
  32. System.out.println("耗费时长"+(end - begin)+"毫秒");
  33. }
  34. @Override
  35. public void modify() {
  36. long begin = System.currentTimeMillis();
  37. try {
  38. Thread.sleep(1010);
  39. } catch (InterruptedException e) {
  40. e.printStackTrace();
  41. }
  42. System.out.println("订单已修改");
  43. long end = System.currentTimeMillis();
  44. System.out.println("耗费时长"+(end - begin)+"毫秒");
  45. }
  46. }

需求可以满足,但显然是违背了OCP开闭原则。这种方案不可取。
第二种方案:编写一个子类继承OrderServiceImpl,在子类中重写每个方法,代码如下:

  1. package com.powernode.mall.service.impl;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className OrderServiceImplSub
  6. * @since 1.0
  7. **/
  8. public class OrderServiceImplSub extends OrderServiceImpl{
  9. @Override
  10. public void generate() {
  11. long begin = System.currentTimeMillis();
  12. super.generate();
  13. long end = System.currentTimeMillis();
  14. System.out.println("耗时"+(end - begin)+"毫秒");
  15. }
  16. @Override
  17. public void detail() {
  18. long begin = System.currentTimeMillis();
  19. super.detail();
  20. long end = System.currentTimeMillis();
  21. System.out.println("耗时"+(end - begin)+"毫秒");
  22. }
  23. @Override
  24. public void modify() {
  25. long begin = System.currentTimeMillis();
  26. super.modify();
  27. long end = System.currentTimeMillis();
  28. System.out.println("耗时"+(end - begin)+"毫秒");
  29. }
  30. }

这种方式可以解决,但是存在两个问题:

  • 第一个问题:假设系统中有100个这样的业务类,需要提供100个子类,并且之前写好的创建Service对象的代码,都要修改为创建子类对象。
  • 第二个问题:由于采用了继承的方式,导致代码之间的耦合度较高。

这种方案也不可取。
第三种方案:使用代理模式(这里采用静态代理)
可以为OrderService接口提供一个代理类。

  1. package com.powernode.mall.service;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className OrderServiceProxy
  6. * @since 1.0
  7. **/
  8. public class OrderServiceProxy implements OrderService{ // 代理对象
  9. // 目标对象
  10. private OrderService orderService;
  11. // 通过构造方法将目标对象传递给代理对象
  12. public OrderServiceProxy(OrderService orderService) {
  13. this.orderService = orderService;
  14. }
  15. @Override
  16. public void generate() {
  17. long begin = System.currentTimeMillis();
  18. // 执行目标对象的目标方法
  19. orderService.generate();
  20. long end = System.currentTimeMillis();
  21. System.out.println("耗时"+(end - begin)+"毫秒");
  22. }
  23. @Override
  24. public void detail() {
  25. long begin = System.currentTimeMillis();
  26. // 执行目标对象的目标方法
  27. orderService.detail();
  28. long end = System.currentTimeMillis();
  29. System.out.println("耗时"+(end - begin)+"毫秒");
  30. }
  31. @Override
  32. public void modify() {
  33. long begin = System.currentTimeMillis();
  34. // 执行目标对象的目标方法
  35. orderService.modify();
  36. long end = System.currentTimeMillis();
  37. System.out.println("耗时"+(end - begin)+"毫秒");
  38. }
  39. }

这种方式的优点:符合OCP开闭原则,同时采用的是关联关系,所以程序的耦合度较低。所以这种方案是被推荐的。
编写客户端程序:

  1. package com.powernode.mall;
  2. import com.powernode.mall.service.OrderService;
  3. import com.powernode.mall.service.OrderServiceProxy;
  4. import com.powernode.mall.service.impl.OrderServiceImpl;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className Client
  9. * @since 1.0
  10. **/
  11. public class Client {
  12. public static void main(String[] args) {
  13. // 创建目标对象
  14. OrderService target = new OrderServiceImpl();
  15. // 创建代理对象
  16. OrderService proxy = new OrderServiceProxy(target);
  17. // 调用代理对象的代理方法
  18. proxy.generate();
  19. proxy.modify();
  20. proxy.detail();
  21. }
  22. }

运行结果:
image.png
以上就是代理模式中的静态代理,其中OrderService接口是代理类和目标类的共同接口。OrderServiceImpl是目标类。OrderServiceProxy是代理类。
大家思考一下:如果系统中业务接口很多,一个接口对应一个代理类,显然也是不合理的,会导致类爆炸。怎么解决这个问题?动态代理可以解决。因为在动态代理中可以在内存中动态的为我们生成代理类的字节码。代理类不需要我们写了。类爆炸解决了,而且代码只需要写一次,代码也会得到复用。

14.3 动态代理

在程序运行阶段,在内存中动态生成代理类,被称为动态代理,目的是为了减少代理类的数量。解决代码复用的问题。
在内存当中动态生成类的技术常见的包括:

  • JDK动态代理技术:只能代理接口。
  • CGLIB动态代理技术:CGLIB(Code Generation Library)是一个开源项目。是一个强大的,高性能,高质量的Code生成类库,它可以在运行期扩展Java类与实现Java接口。它既可以代理接口,又可以代理类,底层是通过继承的方式实现的。性能比JDK动态代理要好。(底层有一个小而快的字节码处理框架ASM。)
  • Javassist动态代理技术:Javassist是一个开源的分析、编辑和创建Java字节码的类库。是由东京工业大学的数学和计算机科学系的 Shigeru Chiba (千叶 滋)所创建的。它已加入了开放源代码JBoss 应用服务器项目,通过使用Javassist对字节码操作为JBoss实现动态”AOP”框架。

    14.3.1 JDK动态代理

    我们还是使用静态代理中的例子:一个接口和一个实现类。 ```java package com.powernode.mall.service;

/**

  • 订单接口
  • @author 动力节点
  • @version 1.0
  • @className OrderService
  • @since 1.0 / public interface OrderService { /

    • 生成订单 */ void generate();

      /**

    • 查看订单详情 */ void detail();

      /**

    • 修改订单 */ void modify(); }
  1. ```java
  2. package com.powernode.mall.service.impl;
  3. import com.powernode.mall.service.OrderService;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className OrderServiceImpl
  8. * @since 1.0
  9. **/
  10. public class OrderServiceImpl implements OrderService {
  11. @Override
  12. public void generate() {
  13. try {
  14. Thread.sleep(1234);
  15. } catch (InterruptedException e) {
  16. e.printStackTrace();
  17. }
  18. System.out.println("订单已生成");
  19. }
  20. @Override
  21. public void detail() {
  22. try {
  23. Thread.sleep(2541);
  24. } catch (InterruptedException e) {
  25. e.printStackTrace();
  26. }
  27. System.out.println("订单信息如下:******");
  28. }
  29. @Override
  30. public void modify() {
  31. try {
  32. Thread.sleep(1010);
  33. } catch (InterruptedException e) {
  34. e.printStackTrace();
  35. }
  36. System.out.println("订单已修改");
  37. }
  38. }

我们在静态代理的时候,除了以上一个接口和一个实现类之外,是不是要写一个代理类UserServiceProxy呀!在动态代理中UserServiceProxy代理类是可以动态生成的。这个类不需要写。我们直接写客户端程序即可:

  1. package com.powernode.mall;
  2. import com.powernode.mall.service.OrderService;
  3. import com.powernode.mall.service.impl.OrderServiceImpl;
  4. import java.lang.reflect.Proxy;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className Client
  9. * @since 1.0
  10. **/
  11. public class Client {
  12. public static void main(String[] args) {
  13. // 第一步:创建目标对象
  14. OrderService target = new OrderServiceImpl();
  15. // 第二步:创建代理对象
  16. OrderService orderServiceProxy = Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(), 调用处理器对象);
  17. // 第三步:调用代理对象的代理方法
  18. orderServiceProxy.detail();
  19. orderServiceProxy.modify();
  20. orderServiceProxy.generate();
  21. }
  22. }

以上第二步创建代理对象是需要大家理解的:
OrderService orderServiceProxy = Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(), 调用处理器对象);
这行代码做了两件事:

  • 第一件事:在内存中生成了代理类的字节码
  • 第二件事:创建代理对象

Proxy类全名:java.lang.reflect.Proxy。这是JDK提供的一个类(所以称为JDK动态代理)。主要是通过这个类在内存中生成代理类的字节码。
其中newProxyInstance()方法有三个参数:

  • 第一个参数:类加载器。在内存中生成了字节码,要想执行这个字节码,也是需要先把这个字节码加载到内存当中的。所以要指定使用哪个类加载器加载。
  • 第二个参数:接口类型。代理类和目标类实现相同的接口,所以要通过这个参数告诉JDK动态代理生成的类要实现哪些接口。
  • 第三个参数:调用处理器。这是一个JDK动态代理规定的接口,接口全名:java.lang.reflect.InvocationHandler。显然这是一个回调接口,也就是说调用这个接口中方法的程序已经写好了,就差这个接口的实现类了。

所以接下来我们要写一下java.lang.reflect.InvocationHandler接口的实现类,并且实现接口中的方法,代码如下:

  1. package com.powernode.mall.service;
  2. import java.lang.reflect.InvocationHandler;
  3. import java.lang.reflect.Method;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className TimerInvocationHandler
  8. * @since 1.0
  9. **/
  10. public class TimerInvocationHandler implements InvocationHandler {
  11. @Override
  12. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  13. return null;
  14. }
  15. }

InvocationHandler接口中有一个方法invoke,这个invoke方法上有三个参数:

  • 第一个参数:Object proxy。代理对象。设计这个参数只是为了后期的方便,如果想在invoke方法中使用代理对象的话,尽管通过这个参数来使用。
  • 第二个参数:Method method。目标方法。
  • 第三个参数:Object[] args。目标方法调用时要传的参数。

我们将来肯定是要调用“目标方法”的,但要调用目标方法的话,需要“目标对象”的存在,“目标对象”从哪儿来呢?我们可以给TimerInvocationHandler提供一个构造方法,可以通过这个构造方法传过来“目标对象”,代码如下:

  1. package com.powernode.mall.service;
  2. import java.lang.reflect.InvocationHandler;
  3. import java.lang.reflect.Method;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className TimerInvocationHandler
  8. * @since 1.0
  9. **/
  10. public class TimerInvocationHandler implements InvocationHandler {
  11. // 目标对象
  12. private Object target;
  13. // 通过构造方法来传目标对象
  14. public TimerInvocationHandler(Object target) {
  15. this.target = target;
  16. }
  17. @Override
  18. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  19. return null;
  20. }
  21. }

有了目标对象我们就可以在invoke()方法中调用目标方法了。代码如下:

  1. package com.powernode.mall.service;
  2. import java.lang.reflect.InvocationHandler;
  3. import java.lang.reflect.Method;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className TimerInvocationHandler
  8. * @since 1.0
  9. **/
  10. public class TimerInvocationHandler implements InvocationHandler {
  11. // 目标对象
  12. private Object target;
  13. // 通过构造方法来传目标对象
  14. public TimerInvocationHandler(Object target) {
  15. this.target = target;
  16. }
  17. @Override
  18. public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  19. // 目标执行之前增强。
  20. long begin = System.currentTimeMillis();
  21. // 调用目标对象的目标方法
  22. Object retValue = method.invoke(target, args);
  23. // 目标执行之后增强。
  24. long end = System.currentTimeMillis();
  25. System.out.println("耗时"+(end - begin)+"毫秒");
  26. // 一定要记得返回哦。
  27. return retValue;
  28. }
  29. }

到此为止,调用处理器就完成了。接下来,应该继续完善Client程序:

  1. package com.powernode.mall;
  2. import com.powernode.mall.service.OrderService;
  3. import com.powernode.mall.service.TimerInvocationHandler;
  4. import com.powernode.mall.service.impl.OrderServiceImpl;
  5. import java.lang.reflect.Proxy;
  6. /**
  7. * @author 动力节点
  8. * @version 1.0
  9. * @className Client
  10. * @since 1.0
  11. **/
  12. public class Client {
  13. public static void main(String[] args) {
  14. // 创建目标对象
  15. OrderService target = new OrderServiceImpl();
  16. // 创建代理对象
  17. OrderService orderServiceProxy = (OrderService) Proxy.newProxyInstance(target.getClass().getClassLoader(),
  18. target.getClass().getInterfaces(),
  19. new TimerInvocationHandler(target));
  20. // 调用代理对象的代理方法
  21. orderServiceProxy.detail();
  22. orderServiceProxy.modify();
  23. orderServiceProxy.generate();
  24. }
  25. }

大家可能会比较好奇:那个InvocationHandler接口中的invoke()方法没看见在哪里调用呀?
注意:当你调用代理对象的代理方法的时候,注册在InvocationHandler接口中的invoke()方法会被调用。也就是上面代码第24 25 26行,这三行代码中任意一行代码执行,注册在InvocationHandler接口中的invoke()方法都会被调用。
执行结果:
image.png
学到这里可能会感觉有点懵,折腾半天,到最后这不是还得写一个接口的实现类吗?没省劲儿呀?
你要这样想就错了!!!!
我们可以看到,不管你有多少个Service接口,多少个业务类,这个TimerInvocationHandler接口是不是只需要写一次就行了,代码是不是得到复用了!!!!
而且最重要的是,以后程序员只需要关注核心业务的编写了,像这种统计时间的代码根本不需要关注。因为这种统计时间的代码只需要在调用处理器中编写一次即可。
到这里,JDK动态代理的原理就结束了。
不过我们看以下这个代码确实有点繁琐,对于客户端来说,用起来不方便:
image.png
我们可以提供一个工具类:ProxyUtil,封装一个方法:

  1. package com.powernode.mall.util;
  2. import com.powernode.mall.service.TimerInvocationHandler;
  3. import java.lang.reflect.Proxy;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className ProxyUtil
  8. * @since 1.0
  9. **/
  10. public class ProxyUtil {
  11. public static Object newProxyInstance(Object target) {
  12. return Proxy.newProxyInstance(target.getClass().getClassLoader(),
  13. target.getClass().getInterfaces(),
  14. new TimerInvocationHandler(target));
  15. }
  16. }

这样客户端代码就不需要写那么繁琐了:

  1. package com.powernode.mall;
  2. import com.powernode.mall.service.OrderService;
  3. import com.powernode.mall.service.TimerInvocationHandler;
  4. import com.powernode.mall.service.impl.OrderServiceImpl;
  5. import com.powernode.mall.util.ProxyUtil;
  6. import java.lang.reflect.Proxy;
  7. /**
  8. * @author 动力节点
  9. * @version 1.0
  10. * @className Client
  11. * @since 1.0
  12. **/
  13. public class Client {
  14. public static void main(String[] args) {
  15. // 创建目标对象
  16. OrderService target = new OrderServiceImpl();
  17. // 创建代理对象
  18. OrderService orderServiceProxy = (OrderService) ProxyUtil.newProxyInstance(target);
  19. // 调用代理对象的代理方法
  20. orderServiceProxy.detail();
  21. orderServiceProxy.modify();
  22. orderServiceProxy.generate();
  23. }
  24. }

执行结果:
image.png

14.3.2 CGLIB动态代理

CGLIB既可以代理接口,又可以代理类。底层采用继承的方式实现。所以被代理的目标类不能使用final修饰。
使用CGLIB,需要引入它的依赖:

  1. <dependency>
  2. <groupId>cglib</groupId>
  3. <artifactId>cglib</artifactId>
  4. <version>3.3.0</version>
  5. </dependency>

我们准备一个没有实现接口的类,如下:

  1. package com.powernode.mall.service;
  2. /**
  3. * @author 动力节点
  4. * @version 1.0
  5. * @className UserService
  6. * @since 1.0
  7. **/
  8. public class UserService {
  9. public void login(){
  10. System.out.println("用户正在登录系统....");
  11. }
  12. public void logout(){
  13. System.out.println("用户正在退出系统....");
  14. }
  15. }

使用CGLIB在内存中为UserService类生成代理类,并创建对象:

  1. package com.powernode.mall;
  2. import com.powernode.mall.service.UserService;
  3. import net.sf.cglib.proxy.Enhancer;
  4. /**
  5. * @author 动力节点
  6. * @version 1.0
  7. * @className Client
  8. * @since 1.0
  9. **/
  10. public class Client {
  11. public static void main(String[] args) {
  12. // 创建字节码增强器
  13. Enhancer enhancer = new Enhancer();
  14. // 告诉cglib要继承哪个类
  15. enhancer.setSuperclass(UserService.class);
  16. // 设置回调接口
  17. enhancer.setCallback(方法拦截器对象);
  18. // 生成源码,编译class,加载到JVM,并创建代理对象
  19. UserService userServiceProxy = (UserService)enhancer.create();
  20. userServiceProxy.login();
  21. userServiceProxy.logout();
  22. }
  23. }

和JDK动态代理原理差不多,在CGLIB中需要提供的不是InvocationHandler,而是:net.sf.cglib.proxy.MethodInterceptor
编写MethodInterceptor接口实现类:

  1. package com.powernode.mall.service;
  2. import net.sf.cglib.proxy.MethodInterceptor;
  3. import net.sf.cglib.proxy.MethodProxy;
  4. import java.lang.reflect.Method;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className TimerMethodInterceptor
  9. * @since 1.0
  10. **/
  11. public class TimerMethodInterceptor implements MethodInterceptor {
  12. @Override
  13. public Object intercept(Object target, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
  14. return null;
  15. }
  16. }

MethodInterceptor接口中有一个方法intercept(),该方法有4个参数:
第一个参数:目标对象
第二个参数:目标方法
第三个参数:目标方法调用时的实参
第四个参数:代理方法
在MethodInterceptor的intercept()方法中调用目标以及添加增强:

  1. package com.powernode.mall.service;
  2. import net.sf.cglib.proxy.MethodInterceptor;
  3. import net.sf.cglib.proxy.MethodProxy;
  4. import java.lang.reflect.Method;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className TimerMethodInterceptor
  9. * @since 1.0
  10. **/
  11. public class TimerMethodInterceptor implements MethodInterceptor {
  12. @Override
  13. public Object intercept(Object target, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
  14. // 前增强
  15. long begin = System.currentTimeMillis();
  16. // 调用目标
  17. Object retValue = methodProxy.invokeSuper(target, objects);
  18. // 后增强
  19. long end = System.currentTimeMillis();
  20. System.out.println("耗时" + (end - begin) + "毫秒");
  21. // 一定要返回
  22. return retValue;
  23. }
  24. }

回调已经写完了,可以修改客户端程序了:

  1. package com.powernode.mall;
  2. import com.powernode.mall.service.TimerMethodInterceptor;
  3. import com.powernode.mall.service.UserService;
  4. import net.sf.cglib.proxy.Enhancer;
  5. /**
  6. * @author 动力节点
  7. * @version 1.0
  8. * @className Client
  9. * @since 1.0
  10. **/
  11. public class Client {
  12. public static void main(String[] args) {
  13. // 创建字节码增强器
  14. Enhancer enhancer = new Enhancer();
  15. // 告诉cglib要继承哪个类
  16. enhancer.setSuperclass(UserService.class);
  17. // 设置回调接口
  18. enhancer.setCallback(new TimerMethodInterceptor());
  19. // 生成源码,编译class,加载到JVM,并创建代理对象
  20. UserService userServiceProxy = (UserService)enhancer.create();
  21. userServiceProxy.login();
  22. userServiceProxy.logout();
  23. }
  24. }

对于高版本的JDK,如果使用CGLIB,需要在启动项中添加两个启动参数:
image.png

  • —add-opens java.base/java.lang=ALL-UNNAMED
  • —add-opens java.base/sun.net.util=ALL-UNNAMED

执行结果:
image.png

十五、面向切面编程AOP

IoC使软件组件松耦合。AOP让你能够捕捉系统中经常使用的功能,把它转化成组件。
AOP(Aspect Oriented Programming):面向切面编程,面向方面编程。(AOP是一种编程技术)
AOP是对OOP的补充延伸。
AOP底层使用的就是动态代理来实现的。
Spring的AOP使用的动态代理是:JDK动态代理 + CGLIB动态代理技术。Spring在这两种动态代理中灵活切换,如果是代理接口,会默认使用JDK动态代理,如果要代理某个类,这个类没有实现接口,就会切换使用CGLIB。当然,你也可以强制通过一些配置让Spring只使用CGLIB。

15.1 AOP介绍

一般一个系统当中都会有一些系统服务,例如:日志、事务管理、安全等。这些系统服务被称为:交叉业务
这些交叉业务几乎是通用的,不管你是做银行账户转账,还是删除用户数据。日志、事务管理、安全,这些都是需要做的。
如果在每一个业务处理过程当中,都掺杂这些交叉业务代码进去的话,存在两方面问题:

  • 第一:交叉业务代码在多个业务流程中反复出现,显然这个交叉业务代码没有得到复用。并且修改这些交叉业务代码的话,需要修改多处。
  • 第二:程序员无法专注核心业务代码的编写,在编写核心业务代码的同时还需要处理这些交叉业务。

使用AOP可以很轻松的解决以上问题。
请看下图,可以帮助你快速理解AOP的思想:
image.png
用一句话总结AOP:将与核心业务无关的代码独立的抽取出来,形成一个独立的组件,然后以横向交叉的方式应用到业务流程当中的过程被称为AOP。
AOP的优点:

  • 第一:代码复用性增强。
  • 第二:代码易维护。
  • 第三:使开发者更关注业务逻辑。

    15.2 AOP的七大术语

    1. public class UserService{
    2. public void do1(){
    3. System.out.println("do 1");
    4. }
    5. public void do2(){
    6. System.out.println("do 2");
    7. }
    8. public void do3(){
    9. System.out.println("do 3");
    10. }
    11. public void do4(){
    12. System.out.println("do 4");
    13. }
    14. public void do5(){
    15. System.out.println("do 5");
    16. }
    17. // 核心业务方法
    18. public void service(){
    19. do1();
    20. do2();
    21. do3();
    22. do5();
    23. }
    24. }
  • 连接点 Joinpoint

    • 在程序的整个执行流程中,可以织入切面的位置。方法的执行前后,异常抛出之后等位置。
  • 切点 Pointcut
    • 在程序执行流程中,真正织入切面的方法。(一个切点对应多个连接点)
  • 通知 Advice
    • 通知又叫增强,就是具体你要织入的代码。
    • 通知包括:
      • 前置通知
      • 后置通知
      • 环绕通知
      • 异常通知
      • 最终通知
  • 切面 Aspect
    • 切点 + 通知就是切面。
  • 织入 Weaving
    • 把通知应用到目标对象上的过程。
  • 代理对象 Proxy
    • 一个目标对象被织入通知后产生的新对象。
  • 目标对象 Target
    • 被织入通知的对象。

通过下图,大家可以很好的理解AOP的相关术语:
image.png

15.3 切点表达式

切点表达式用来定义通知(Advice)往哪些方法上切入。
切入点表达式语法格式:

  1. execution([访问控制权限修饰符] 返回值类型 [全限定类名]方法名(形式参数列表) [异常])

访问控制权限修饰符:

  • 可选项。
  • 没写,就是4个权限都包括。
  • 写public就表示只包括公开的方法。

返回值类型:

  • 必填项。
    • 表示返回值类型任意。

全限定类名:

  • 可选项。
  • 两个点“..”代表当前包以及子包下的所有类。
  • 省略时表示所有的类。

方法名:

  • 必填项。
  • *表示所有方法。
  • set*表示所有的set方法。

形式参数列表:

  • 必填项
  • () 表示没有参数的方法
  • (..) 参数类型和个数随意的方法
  • (*) 只有一个参数的方法
  • (*, String) 第一个参数类型随意,第二个参数是String的。

异常:

  • 可选项。
  • 省略时表示任意异常类型。

理解以下的切点表达式:

  1. execution(public * com.powernode.mall.service.*.delete*(..))
  1. execution(* com.powernode.mall..*(..))
  1. execution(* *(..))

15.4 使用Spring的AOP

Spring对AOP的实现包括以下3种方式:

  • 第一种方式:Spring框架结合AspectJ框架实现的AOP,基于注解方式。
  • 第二种方式:Spring框架结合AspectJ框架实现的AOP,基于XML方式。
  • 第三种方式:Spring框架自己实现的AOP,基于XML配置方式。

实际开发中,都是Spring+AspectJ来实现AOP。所以我们重点学习第一种和第二种方式。
什么是AspectJ?(Eclipse组织的一个支持AOP的框架。AspectJ框架是独立于Spring框架之外的一个框架,Spring框架用了AspectJ)
AspectJ项目起源于帕洛阿尔托(Palo Alto)研究中心(缩写为PARC)。该中心由Xerox集团资助,Gregor Kiczales领导,从1997年开始致力于AspectJ的开发,1998年第一次发布给外部用户,2001年发布1.0 release。为了推动AspectJ技术和社团的发展,PARC在2003年3月正式将AspectJ项目移交给了Eclipse组织,因为AspectJ的发展和受关注程度大大超出了PARC的预期,他们已经无力继续维持它的发展。

15.4.1 准备工作

使用Spring+AspectJ的AOP需要引入的依赖如下:

  1. <!--spring context依赖-->
  2. <dependency>
  3. <groupId>org.springframework</groupId>
  4. <artifactId>spring-context</artifactId>
  5. <version>6.0.0-M2</version>
  6. </dependency>
  7. <!--spring aop依赖-->
  8. <dependency>
  9. <groupId>org.springframework</groupId>
  10. <artifactId>spring-aop</artifactId>
  11. <version>6.0.0-M2</version>
  12. </dependency>
  13. <!--spring aspects依赖-->
  14. <dependency>
  15. <groupId>org.springframework</groupId>
  16. <artifactId>spring-aspects</artifactId>
  17. <version>6.0.0-M2</version>
  18. </dependency>

Spring配置文件中添加context命名空间和aop命名空间

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  8. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. </beans>

15.4.2 基于AspectJ的AOP注解式开发

实现步骤

第一步:定义目标类以及目标方法

  1. package com.powernode.spring6.service;
  2. // 目标类
  3. public class OrderService {
  4. // 目标方法
  5. public void generate(){
  6. System.out.println("订单已生成!");
  7. }
  8. }

第二步:定义切面类

  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.annotation.Aspect;
  3. // 切面类
  4. @Aspect
  5. public class MyAspect {
  6. }

第三步:目标类和切面类都纳入spring bean管理
在目标类OrderService上添加@Component注解。
在切面类MyAspect类上添加@Component注解。
第四步:在spring配置文件中添加组建扫描

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  8. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!--开启组件扫描-->
  10. <context:component-scan base-package="com.powernode.spring6.service"/>
  11. </beans>

第五步:在切面类中添加通知

  1. package com.powernode.spring6.service;
  2. import org.springframework.stereotype.Component;
  3. import org.aspectj.lang.annotation.Aspect;
  4. // 切面类
  5. @Aspect
  6. @Component
  7. public class MyAspect {
  8. // 这就是需要增强的代码(通知)
  9. public void advice(){
  10. System.out.println("我是一个通知");
  11. }
  12. }

第六步:在通知上添加切点表达式

  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.annotation.Before;
  3. import org.springframework.stereotype.Component;
  4. import org.aspectj.lang.annotation.Aspect;
  5. // 切面类
  6. @Aspect
  7. @Component
  8. public class MyAspect {
  9. // 切点表达式
  10. @Before("execution(* com.powernode.spring6.service.OrderService.*(..))")
  11. // 这就是需要增强的代码(通知)
  12. public void advice(){
  13. System.out.println("我是一个通知");
  14. }
  15. }

注解@Before表示前置通知。
第七步:在spring配置文件中启用自动代理

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:aop="http://www.springframework.org/schema/aop"
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
  8. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
  9. <!--开启组件扫描-->
  10. <context:component-scan base-package="com.powernode.spring6.service"/>
  11. <!--开启自动代理-->
  12. <aop:aspectj-autoproxy proxy-target-class="true"/>
  13. </beans>

开启自动代理之后,凡事带有@Aspect注解的bean都会生成代理对象。
proxy-target-class=”true” 表示采用cglib动态代理。
proxy-target-class=”false” 表示采用jdk动态代理。默认值是false。即使写成false,当没有接口的时候,也会自动选择cglib生成代理类。
测试程序:

  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.service.OrderService;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class AOPTest {
  7. @Test
  8. public void testAOP(){
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-aspectj-aop-annotation.xml");
  10. OrderService orderService = applicationContext.getBean("orderService", OrderService.class);
  11. orderService.generate();
  12. }
  13. }

运行结果:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png

通知类型

通知类型包括:

  • 前置通知:@Before 目标方法执行之前的通知
  • 后置通知:@AfterReturning 目标方法执行之后的通知
  • 环绕通知:@Around 目标方法之前添加通知,同时目标方法执行之后添加通知。
  • 异常通知:@AfterThrowing 发生异常之后执行的通知
  • 最终通知:@After 放在finally语句块中的通知

接下来,编写程序来测试这几个通知的执行顺序:

  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.stereotype.Component;
  5. // 切面类
  6. @Component
  7. @Aspect
  8. public class MyAspect {
  9. @Around("execution(* com.powernode.spring6.service.OrderService.*(..))")
  10. public void aroundAdvice(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  11. System.out.println("环绕通知开始");
  12. // 执行目标方法。
  13. proceedingJoinPoint.proceed();
  14. System.out.println("环绕通知结束");
  15. }
  16. @Before("execution(* com.powernode.spring6.service.OrderService.*(..))")
  17. public void beforeAdvice(){
  18. System.out.println("前置通知");
  19. }
  20. @AfterReturning("execution(* com.powernode.spring6.service.OrderService.*(..))")
  21. public void afterReturningAdvice(){
  22. System.out.println("后置通知");
  23. }
  24. @AfterThrowing("execution(* com.powernode.spring6.service.OrderService.*(..))")
  25. public void afterThrowingAdvice(){
  26. System.out.println("异常通知");
  27. }
  28. @After("execution(* com.powernode.spring6.service.OrderService.*(..))")
  29. public void afterAdvice(){
  30. System.out.println("最终通知");
  31. }
  32. }
  1. package com.powernode.spring6.service;
  2. import org.springframework.stereotype.Component;
  3. // 目标类
  4. @Component
  5. public class OrderService {
  6. // 目标方法
  7. public void generate(){
  8. System.out.println("订单已生成!");
  9. }
  10. }
  1. package com.powernode.spring6.test;
  2. import com.powernode.spring6.service.OrderService;
  3. import org.junit.Test;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class AOPTest {
  7. @Test
  8. public void testAOP(){
  9. ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-aspectj-aop-annotation.xml");
  10. OrderService orderService = applicationContext.getBean("orderService", OrderService.class);
  11. orderService.generate();
  12. }
  13. }

执行结果:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png
通过上面的执行结果就可以判断他们的执行顺序了,这里不再赘述。
结果中没有异常通知,这是因为目标程序执行过程中没有发生异常。我们尝试让目标方法发生异常:

  1. package com.powernode.spring6.service;
  2. import org.springframework.stereotype.Component;
  3. // 目标类
  4. @Component
  5. public class OrderService {
  6. // 目标方法
  7. public void generate(){
  8. System.out.println("订单已生成!");
  9. if (1 == 1) {
  10. throw new RuntimeException("模拟异常发生");
  11. }
  12. }
  13. }

再次执行测试程序,结果如下:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png
通过测试得知,当发生异常之后,最终通知也会执行,因为最终通知@After会出现在finally语句块中。
出现异常之后,后置通知环绕通知的结束部分不会执行。

切面的先后顺序

我们知道,业务流程当中不一定只有一个切面,可能有的切面控制事务,有的记录日志,有的进行安全控制,如果多个切面的话,顺序如何控制:可以使用@Order注解来标识切面类,为@Order注解的value指定一个整数型的数字,数字越小,优先级越高
再定义一个切面类,如下:

  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.core.annotation.Order;
  5. import org.springframework.stereotype.Component;
  6. @Aspect
  7. @Component
  8. @Order(1) //设置优先级
  9. public class YourAspect {
  10. @Around("execution(* com.powernode.spring6.service.OrderService.*(..))")
  11. public void aroundAdvice(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  12. System.out.println("YourAspect环绕通知开始");
  13. // 执行目标方法。
  14. proceedingJoinPoint.proceed();
  15. System.out.println("YourAspect环绕通知结束");
  16. }
  17. @Before("execution(* com.powernode.spring6.service.OrderService.*(..))")
  18. public void beforeAdvice(){
  19. System.out.println("YourAspect前置通知");
  20. }
  21. @AfterReturning("execution(* com.powernode.spring6.service.OrderService.*(..))")
  22. public void afterReturningAdvice(){
  23. System.out.println("YourAspect后置通知");
  24. }
  25. @AfterThrowing("execution(* com.powernode.spring6.service.OrderService.*(..))")
  26. public void afterThrowingAdvice(){
  27. System.out.println("YourAspect异常通知");
  28. }
  29. @After("execution(* com.powernode.spring6.service.OrderService.*(..))")
  30. public void afterAdvice(){
  31. System.out.println("YourAspect最终通知");
  32. }
  33. }
  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.core.annotation.Order;
  5. import org.springframework.stereotype.Component;
  6. // 切面类
  7. @Component
  8. @Aspect
  9. @Order(2) //设置优先级
  10. public class MyAspect {
  11. @Around("execution(* com.powernode.spring6.service.OrderService.*(..))")
  12. public void aroundAdvice(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  13. System.out.println("环绕通知开始");
  14. // 执行目标方法。
  15. proceedingJoinPoint.proceed();
  16. System.out.println("环绕通知结束");
  17. }
  18. @Before("execution(* com.powernode.spring6.service.OrderService.*(..))")
  19. public void beforeAdvice(){
  20. System.out.println("前置通知");
  21. }
  22. @AfterReturning("execution(* com.powernode.spring6.service.OrderService.*(..))")
  23. public void afterReturningAdvice(){
  24. System.out.println("后置通知");
  25. }
  26. @AfterThrowing("execution(* com.powernode.spring6.service.OrderService.*(..))")
  27. public void afterThrowingAdvice(){
  28. System.out.println("异常通知");
  29. }
  30. @After("execution(* com.powernode.spring6.service.OrderService.*(..))")
  31. public void afterAdvice(){
  32. System.out.println("最终通知");
  33. }
  34. }

执行测试程序:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png
通过修改@Order注解的整数值来切换顺序,执行测试程序:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png

优化使用切点表达式

观看以下代码中的切点表达式:

  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.core.annotation.Order;
  5. import org.springframework.stereotype.Component;
  6. // 切面类
  7. @Component
  8. @Aspect
  9. @Order(2)
  10. public class MyAspect {
  11. @Around("execution(* com.powernode.spring6.service.OrderService.*(..))")
  12. public void aroundAdvice(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  13. System.out.println("环绕通知开始");
  14. // 执行目标方法。
  15. proceedingJoinPoint.proceed();
  16. System.out.println("环绕通知结束");
  17. }
  18. @Before("execution(* com.powernode.spring6.service.OrderService.*(..))")
  19. public void beforeAdvice(){
  20. System.out.println("前置通知");
  21. }
  22. @AfterReturning("execution(* com.powernode.spring6.service.OrderService.*(..))")
  23. public void afterReturningAdvice(){
  24. System.out.println("后置通知");
  25. }
  26. @AfterThrowing("execution(* com.powernode.spring6.service.OrderService.*(..))")
  27. public void afterThrowingAdvice(){
  28. System.out.println("异常通知");
  29. }
  30. @After("execution(* com.powernode.spring6.service.OrderService.*(..))")
  31. public void afterAdvice(){
  32. System.out.println("最终通知");
  33. }
  34. }

缺点是:

  • 第一:切点表达式重复写了多次,没有得到复用。
  • 第二:如果要修改切点表达式,需要修改多处,难维护。

可以这样做:将切点表达式单独的定义出来,在需要的位置引入即可。如下:

  1. package com.powernode.spring6.service;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.core.annotation.Order;
  5. import org.springframework.stereotype.Component;
  6. // 切面类
  7. @Component
  8. @Aspect
  9. @Order(2)
  10. public class MyAspect {
  11. @Pointcut("execution(* com.powernode.spring6.service.OrderService.*(..))")
  12. public void pointcut(){}
  13. @Around("pointcut()")
  14. public void aroundAdvice(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
  15. System.out.println("环绕通知开始");
  16. // 执行目标方法。
  17. proceedingJoinPoint.proceed();
  18. System.out.println("环绕通知结束");
  19. }
  20. @Before("pointcut()")
  21. public void beforeAdvice(){
  22. System.out.println("前置通知");
  23. }
  24. @AfterReturning("pointcut()")
  25. public void afterReturningAdvice(){
  26. System.out.println("后置通知");
  27. }
  28. @AfterThrowing("pointcut()")
  29. public void afterThrowingAdvice(){
  30. System.out.println("异常通知");
  31. }
  32. @After("pointcut()")
  33. public void afterAdvice(){
  34. System.out.println("最终通知");
  35. }
  36. }

使用@Pointcut注解来定义独立的切点表达式。
注意这个@Pointcut注解标注的方法随意,只是起到一个能够让@Pointcut注解编写的位置。
执行测试程序:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png

全注解式开发AOP

就是编写一个类,在这个类上面使用大量注解来代替spring的配置文件,spring配置文件消失了,如下:

  1. package com.powernode.spring6.service;
  2. import org.springframework.context.annotation.ComponentScan;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.context.annotation.EnableAspectJAutoProxy;
  5. @Configuration
  6. @ComponentScan("com.powernode.spring6.service")
  7. @EnableAspectJAutoProxy(proxyTargetClass = true)
  8. public class Spring6Configuration {
  9. }

测试程序也变化了:

  1. @Test
  2. public void testAOPWithAllAnnotation(){
  3. ApplicationContext applicationContext = new AnnotationConfigApplicationContext(Spring6Configuration.class);
  4. OrderService orderService = applicationContext.getBean("orderService", OrderService.class);
  5. orderService.generate();
  6. }

执行结果如下:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png

15.4.3 基于XML配置方式的AOP(了解)

第一步:编写目标类

package com.powernode.spring6.service;

// 目标类
public class VipService {
    public void add(){
        System.out.println("保存vip信息。");
    }
}

第二步:编写切面类,并且编写通知

package com.powernode.spring6.service;

import org.aspectj.lang.ProceedingJoinPoint;

// 负责计时的切面类
public class TimerAspect {

    public void time(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        long begin = System.currentTimeMillis();
        //执行目标
        proceedingJoinPoint.proceed();
        long end = System.currentTimeMillis();
        System.out.println("耗时"+(end - begin)+"毫秒");
    }
}

第三步:编写spring配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--纳入spring bean管理-->
    <bean id="vipService" class="com.powernode.spring6.service.VipService"/>
    <bean id="timerAspect" class="com.powernode.spring6.service.TimerAspect"/>

    <!--aop配置-->
    <aop:config>
        <!--切点表达式-->
        <aop:pointcut id="p" expression="execution(* com.powernode.spring6.service.VipService.*(..))"/>
        <!--切面-->
        <aop:aspect ref="timerAspect">
            <!--切面=通知 + 切点-->
            <aop:around method="time" pointcut-ref="p"/>
        </aop:aspect>
    </aop:config>
</beans>

测试程序:

package com.powernode.spring6.test;

import com.powernode.spring6.service.VipService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class AOPTest3 {

    @Test
    public void testAOPXml(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring-aop-xml.xml");
        VipService vipService = applicationContext.getBean("vipService", VipService.class);
        vipService.add();
    }
}

执行结果:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png

15.5 AOP的实际案例:事务处理

项目中的事务控制是在所难免的。在一个业务流程当中,可能需要多条DML语句共同完成,为了保证数据的安全,这多条DML语句要么同时成功,要么同时失败。这就需要添加事务控制的代码。例如以下伪代码:

class 业务类1{
    public void 业务方法1(){
        try{
            // 开启事务
            startTransaction();

            // 执行核心业务逻辑
            step1();
            step2();
            step3();
            ....

            // 提交事务
            commitTransaction();
        }catch(Exception e){
            // 回滚事务
            rollbackTransaction();
        }
    }
    public void 业务方法2(){
        try{
            // 开启事务
            startTransaction();

            // 执行核心业务逻辑
            step1();
            step2();
            step3();
            ....

            // 提交事务
            commitTransaction();
        }catch(Exception e){
            // 回滚事务
            rollbackTransaction();
        }
    }
    public void 业务方法3(){
        try{
            // 开启事务
            startTransaction();

            // 执行核心业务逻辑
            step1();
            step2();
            step3();
            ....

            // 提交事务
            commitTransaction();
        }catch(Exception e){
            // 回滚事务
            rollbackTransaction();
        }
    }
}

class 业务类2{
    public void 业务方法1(){
        try{
            // 开启事务
            startTransaction();

            // 执行核心业务逻辑
            step1();
            step2();
            step3();
            ....

            // 提交事务
            commitTransaction();
        }catch(Exception e){
            // 回滚事务
            rollbackTransaction();
        }
    }
    public void 业务方法2(){
        try{
            // 开启事务
            startTransaction();

            // 执行核心业务逻辑
            step1();
            step2();
            step3();
            ....

            // 提交事务
            commitTransaction();
        }catch(Exception e){
            // 回滚事务
            rollbackTransaction();
        }
    }
    public void 业务方法3(){
        try{
            // 开启事务
            startTransaction();

            // 执行核心业务逻辑
            step1();
            step2();
            step3();
            ....

            // 提交事务
            commitTransaction();
        }catch(Exception e){
            // 回滚事务
            rollbackTransaction();
        }
    }
}
//......

可以看到,这些业务类中的每一个业务方法都是需要控制事务的,而控制事务的代码又是固定的格式,都是:

try{
    // 开启事务
    startTransaction();

    // 执行核心业务逻辑
    //......

    // 提交事务
    commitTransaction();
}catch(Exception e){
    // 回滚事务
    rollbackTransaction();
}

这个控制事务的代码就是和业务逻辑没有关系的“交叉业务”。以上伪代码当中可以看到这些交叉业务的代码没有得到复用,并且如果这些交叉业务代码需要修改,那必然需要修改多处,难维护,怎么解决?可以采用AOP思想解决。可以把以上控制事务的代码作为环绕通知,切入到目标类的方法当中。接下来我们做一下这件事,有两个业务类,如下:

package com.powernode.spring6.biz;

import org.springframework.stereotype.Component;

@Component
// 业务类
public class AccountService {
    // 转账业务方法
    public void transfer(){
        System.out.println("正在进行银行账户转账");
    }
    // 取款业务方法
    public void withdraw(){
        System.out.println("正在进行取款操作");
    }
}
package com.powernode.spring6.biz;

import org.springframework.stereotype.Component;

@Component
// 业务类
public class OrderService {
    // 生成订单
    public void generate(){
        System.out.println("正在生成订单");
    }
    // 取消订单
    public void cancel(){
        System.out.println("正在取消订单");
    }
}

注意,以上两个业务类已经纳入spring bean的管理,因为都添加了@Component注解。
接下来我们给以上两个业务类的4个方法添加事务控制代码,使用AOP来完成:

package com.powernode.spring6.biz;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;

@Aspect
@Component
// 事务切面类
public class TransactionAspect {

    @Around("execution(* com.powernode.spring6.biz..*(..))")
    public void aroundAdvice(ProceedingJoinPoint proceedingJoinPoint){
        try {
            System.out.println("开启事务");
            // 执行目标
            proceedingJoinPoint.proceed();
            System.out.println("提交事务");
        } catch (Throwable e) {
            System.out.println("回滚事务");
        }
    }
}

你看,这个事务控制代码是不是只需要写一次就行了,并且修改起来也没有成本。编写测试程序:

package com.powernode.spring6.test;

import com.powernode.spring6.biz.AccountService;
import com.powernode.spring6.biz.OrderService;
import com.powernode.spring6.service.Spring6Configuration;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

public class AOPTest2 {
    @Test
    public void testTransaction(){
        ApplicationContext applicationContext = new AnnotationConfigApplicationContext(Spring6Configuration.class);
        OrderService orderService = applicationContext.getBean("orderService", OrderService.class);
        AccountService accountService = applicationContext.getBean("accountService", AccountService.class);
        // 生成订单
        orderService.generate();
        // 取消订单
        orderService.cancel();
        // 转账
        accountService.transfer();
        // 取款
        accountService.withdraw();
    }
}

执行结果:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png
通过测试可以看到,所有的业务方法都添加了事务控制的代码。

15.6 AOP的实际案例:安全日志

需求是这样的:项目开发结束了,已经上线了。运行正常。客户提出了新的需求:凡事在系统中进行修改操作的,删除操作的,新增操作的,都要把这个人记录下来。因为这几个操作是属于危险行为。例如有业务类和业务方法:

package com.powernode.spring6.biz;

import org.springframework.stereotype.Component;

@Component
//用户业务
public class UserService {
    public void getUser(){
        System.out.println("获取用户信息");
    }
    public void saveUser(){
        System.out.println("保存用户");
    }
    public void deleteUser(){
        System.out.println("删除用户");
    }
    public void modifyUser(){
        System.out.println("修改用户");
    }
}
package com.powernode.spring6.biz;

import org.springframework.stereotype.Component;

// 商品业务类
@Component
public class ProductService {
    public void getProduct(){
        System.out.println("获取商品信息");
    }
    public void saveProduct(){
        System.out.println("保存商品");
    }
    public void deleteProduct(){
        System.out.println("删除商品");
    }
    public void modifyProduct(){
        System.out.println("修改商品");
    }
}

注意:已经添加了@Component注解。
接下来我们使用aop来解决上面的需求:编写一个负责安全的切面类

package com.powernode.spring6.biz;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

@Component
@Aspect
public class SecurityAspect {

    @Pointcut("execution(* com.powernode.spring6.biz..save*(..))")
    public void savePointcut(){}

    @Pointcut("execution(* com.powernode.spring6.biz..delete*(..))")
    public void deletePointcut(){}

    @Pointcut("execution(* com.powernode.spring6.biz..modify*(..))")
    public void modifyPointcut(){}

    @Before("savePointcut() || deletePointcut() || modifyPointcut()")
    public void beforeAdivce(JoinPoint joinpoint){
        System.out.println("XXX操作员正在操作"+joinpoint.getSignature().getName()+"方法");
    }
}
@Test
public void testSecurity(){
    ApplicationContext applicationContext = new AnnotationConfigApplicationContext(Spring6Configuration.class);
    UserService userService = applicationContext.getBean("userService", UserService.class);
    ProductService productService = applicationContext.getBean("productService", ProductService.class);
    userService.getUser();
    userService.saveUser();
    userService.deleteUser();
    userService.modifyUser();
    productService.getProduct();
    productService.saveProduct();
    productService.deleteProduct();
    productService.modifyProduct();
}

执行结果:
5F9597E7-7930-4384-95C2-CF64C9DDA9F3.png

十六、Spring对事务的支持

16.1 事务概述

  • 什么是事务
    • 在一个业务流程当中,通常需要多条DML(insert delete update)语句共同联合才能完成,这多条DML语句必须同时成功,或者同时失败,这样才能保证数据的安全。
    • 多条DML要么同时成功,要么同时失败,这叫做事务。
    • 事务:Transaction(tx)
  • 事务的四个处理过程:
    • 第一步:开启事务 (start transaction)
    • 第二步:执行核心业务代码
    • 第三步:提交事务(如果核心业务处理过程中没有出现异常)(commit transaction)
    • 第四步:回滚事务(如果核心业务处理过程中出现异常)(rollback transaction)
  • 事务的四个特性:

    • A 原子性:事务是最小的工作单元,不可再分。
    • C 一致性:事务要求要么同时成功,要么同时失败。事务前和事务后的总量不变。
    • I 隔离性:事务和事务之间因为有隔离性,才可以保证互不干扰。
    • D 持久性:持久性是事务结束的标志。

      16.2 引入事务场景

      以银行账户转账为例学习事务。两个账户act-001和act-002。act-001账户向act-002账户转账10000,必须同时成功,或者同时失败。(一个减成功,一个加成功, 这两条update语句必须同时成功,或同时失败。)
      连接数据库的技术采用Spring框架的JdbcTemplate。
      采用三层架构搭建:
      image.png
      模块名:spring6-013-tx-bank(依赖如下) ```xml <?xml version=”1.0” encoding=”UTF-8”?> <project xmlns=”http://maven.apache.org/POM/4.0.0

      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      
      4.0.0

      com.powernode spring6-013-tx-bank 1.0-SNAPSHOT

      jar repository.spring.milestone Spring Milestone Repository https://repo.spring.io/milestone org.springframework spring-context 6.0.0-M2 org.springframework spring-jdbc 6.0.0-M2 mysql mysql-connector-java 8.0.30 com.alibaba druid 1.2.13 !--@Resource注解-- jakarta.annotation jakarta.annotation-api 2.1.1 junit junit 4.13.2 test 17 17

<a name="SSTGD"></a>
### 第一步:准备数据库表
表结构:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1666496097440-75d21db2-588b-4f6a-bd40-149c3de6f27d.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_23%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23f5f3f2&clientId=uae187c3b-e934-4&from=paste&height=183&id=ue8b0909d&originHeight=183&originWidth=792&originalType=binary&ratio=1&rotation=0&showTitle=false&size=18901&status=done&style=shadow&taskId=ubf854639-fb59-4c00-b536-55f060658ad&title=&width=792)<br />表数据:<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1666496136146-5cc1d848-0ad4-425d-a1fc-8b59b5d0b91f.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_15%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23f3f1f0&clientId=uae187c3b-e934-4&from=paste&height=134&id=u2efb26dc&originHeight=134&originWidth=339&originalType=binary&ratio=1&rotation=0&showTitle=false&size=7935&status=done&style=shadow&taskId=uff2b8130-c329-47be-b8a7-d27d204ff1c&title=&width=339)
<a name="rVGCz"></a>
### 第二步:创建包结构
com.powernode.bank.pojo<br />com.powernode.bank.service<br />com.powernode.bank.service.impl<br />com.powernode.bank.dao<br />com.powernode.bank.dao.impl
<a name="Cqtnc"></a>
### 第三步:准备POJO类
```java
package com.powernode.bank.pojo;

/**
 * @author 动力节点
 * @version 1.0
 * @className Account
 * @since 1.0
 **/
public class Account {
    private String actno;
    private Double balance;

    @Override
    public String toString() {
        return "Account{" +
                "actno='" + actno + '\'' +
                ", balance=" + balance +
                '}';
    }

    public Account() {
    }

    public Account(String actno, Double balance) {
        this.actno = actno;
        this.balance = balance;
    }

    public String getActno() {
        return actno;
    }

    public void setActno(String actno) {
        this.actno = actno;
    }

    public Double getBalance() {
        return balance;
    }

    public void setBalance(Double balance) {
        this.balance = balance;
    }
}

第四步:编写持久层

package com.powernode.bank.dao;

import com.powernode.bank.pojo.Account;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountDao
 * @since 1.0
 **/
public interface AccountDao {

    /**
     * 根据账号查询余额
     * @param actno
     * @return
     */
    Account selectByActno(String actno);

    /**
     * 更新账户
     * @param act
     * @return
     */
    int update(Account act);

}
package com.powernode.bank.dao.impl;

import com.powernode.bank.dao.AccountDao;
import com.powernode.bank.pojo.Account;
import jakarta.annotation.Resource;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountDaoImpl
 * @since 1.0
 **/
@Repository("accountDao")
public class AccountDaoImpl implements AccountDao {

    @Resource(name = "jdbcTemplate")
    private JdbcTemplate jdbcTemplate;

    @Override
    public Account selectByActno(String actno) {
        String sql = "select actno, balance from t_act where actno = ?";
        Account account = jdbcTemplate.queryForObject(sql, new BeanPropertyRowMapper<>(Account.class), actno);
        return account;
    }

    @Override
    public int update(Account act) {
        String sql = "update t_act set balance = ? where actno = ?";
        int count = jdbcTemplate.update(sql, act.getBalance(), act.getActno());
        return count;
    }
}

第五步:编写业务层

package com.powernode.bank.service;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountService
 * @since 1.0
 **/
public interface AccountService {

    /**
     * 转账
     * @param fromActno
     * @param toActno
     * @param money
     */
    void transfer(String fromActno, String toActno, double money);
}
package com.powernode.bank.service.impl;

import com.powernode.bank.dao.AccountDao;
import com.powernode.bank.pojo.Account;
import com.powernode.bank.service.AccountService;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountServiceImpl
 * @since 1.0
 **/
@Service("accountService")
public class AccountServiceImpl implements AccountService {

    @Resource(name = "accountDao")
    private AccountDao accountDao;

    @Override
    public void transfer(String fromActno, String toActno, double money) {
        // 查询账户余额是否充足
        Account fromAct = accountDao.selectByActno(fromActno);
        if (fromAct.getBalance() < money) {
            throw new RuntimeException("账户余额不足");
        }
        // 余额充足,开始转账
        Account toAct = accountDao.selectByActno(toActno);
        fromAct.setBalance(fromAct.getBalance() - money);
        toAct.setBalance(toAct.getBalance() + money);
        int count = accountDao.update(fromAct);
        count += accountDao.update(toAct);
        if (count != 2) {
            throw new RuntimeException("转账失败,请联系银行");
        }
    }
}

第六步:编写Spring配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="com.powernode.bank"/>

    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/spring6"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>

    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>

</beans>

第七步:编写表示层(测试程序)

package com.powernode.spring6.test;

import com.powernode.bank.service.AccountService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author 动力节点
 * @version 1.0
 * @className BankTest
 * @since 1.0
 **/
public class BankTest {
    @Test
    public void testTransfer(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
        AccountService accountService = applicationContext.getBean("accountService", AccountService.class);
        try {
            accountService.transfer("act-001", "act-002", 10000);
            System.out.println("转账成功");
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

执行结果:
image.png
数据变化:
image.png

模拟异常

package com.powernode.bank.service.impl;

import com.powernode.bank.dao.AccountDao;
import com.powernode.bank.pojo.Account;
import com.powernode.bank.service.AccountService;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountServiceImpl
 * @since 1.0
 **/
@Service("accountService")
public class AccountServiceImpl implements AccountService {

    @Resource(name = "accountDao")
    private AccountDao accountDao;

    @Override
    public void transfer(String fromActno, String toActno, double money) {
        // 查询账户余额是否充足
        Account fromAct = accountDao.selectByActno(fromActno);
        if (fromAct.getBalance() < money) {
            throw new RuntimeException("账户余额不足");
        }
        // 余额充足,开始转账
        Account toAct = accountDao.selectByActno(toActno);
        fromAct.setBalance(fromAct.getBalance() - money);
        toAct.setBalance(toAct.getBalance() + money);
        int count = accountDao.update(fromAct);

        // 模拟异常
        String s = null;
        s.toString();

        count += accountDao.update(toAct);
        if (count != 2) {
            throw new RuntimeException("转账失败,请联系银行");
        }
    }
}

执行结果:
image.png
数据库表中数据:
image.png
丢了1万。

16.3 Spring对事务的支持

Spring实现事务的两种方式

  • 编程式事务
    • 通过编写代码的方式来实现事务的管理。
  • 声明式事务

    • 基于注解方式
    • 基于XML配置方式

      Spring事务管理API

      Spring对事务的管理底层实现方式是基于AOP实现的。采用AOP的方式进行了封装。所以Spring专门针对事务开发了一套API,API的核心接口如下:
      image.png
      PlatformTransactionManager接口:spring事务管理器的核心接口。在Spring6中它有两个实现:
  • DataSourceTransactionManager:支持JdbcTemplate、MyBatis、Hibernate等事务管理。

  • JtaTransactionManager:支持分布式事务管理。

如果要在Spring6中使用JdbcTemplate,就要使用DataSourceTransactionManager来管理事务。(Spring内置写好了,可以直接用。)

声明式事务之注解实现方式

  • 第一步:在spring配置文件中配置事务管理器。

    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
    <property name="dataSource" ref="dataSource"/>
    </bean>
    
  • 第二步:在spring配置文件中引入tx命名空间。

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:context="http://www.springframework.org/schema/context"
         xmlns:tx="http://www.springframework.org/schema/tx"
         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                             http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
                             http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">
    
  • 第三步:在spring配置文件中配置“事务注解驱动器”,开始注解的方式控制事务。

    <tx:annotation-driven transaction-manager="transactionManager"/>
    
  • 第四步:在service类上或方法上添加@Transactional注解

在类上添加该注解,该类中所有的方法都有事务。在某个方法上添加该注解,表示只有这个方法使用事务。

package com.powernode.bank.service.impl;

import com.powernode.bank.dao.AccountDao;
import com.powernode.bank.pojo.Account;
import com.powernode.bank.service.AccountService;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountServiceImpl
 * @since 1.0
 **/
@Service("accountService")
@Transactional
public class AccountServiceImpl implements AccountService {

    @Resource(name = "accountDao")
    private AccountDao accountDao;

    @Override
    public void transfer(String fromActno, String toActno, double money) {
        // 查询账户余额是否充足
        Account fromAct = accountDao.selectByActno(fromActno);
        if (fromAct.getBalance() < money) {
            throw new RuntimeException("账户余额不足");
        }
        // 余额充足,开始转账
        Account toAct = accountDao.selectByActno(toActno);
        fromAct.setBalance(fromAct.getBalance() - money);
        toAct.setBalance(toAct.getBalance() + money);
        int count = accountDao.update(fromAct);

        // 模拟异常
        String s = null;
        s.toString();

        count += accountDao.update(toAct);
        if (count != 2) {
            throw new RuntimeException("转账失败,请联系银行");
        }
    }
}

当前数据库表中的数据:
image.png
执行测试程序:
image.png
虽然出现异常了,再次查看数据库表中数据:
image.png
通过测试,发现数据没有变化,事务起作用了。

事务属性

事务属性包括哪些

image.png
事务中的重点属性:

  • 事务传播行为
  • 事务隔离级别
  • 事务超时
  • 只读事务
  • 设置出现哪些异常回滚事务
  • 设置出现哪些异常不回滚事务

    事务传播行为

    什么是事务的传播行为?
    在service类中有a()方法和b()方法,a()方法上有事务,b()方法上也有事务,当a()方法执行过程中调用了b()方法,事务是如何传递的?合并到一个事务里?还是开启一个新的事务?这就是事务传播行为。
    事务传播行为在spring框架中被定义为枚举类型:
    image.png
    一共有七种传播行为:

  • REQUIRED:支持当前事务,如果不存在就新建一个(默认)【没有就新建,有就加入】

  • SUPPORTS:支持当前事务,如果当前没有事务,就以非事务方式执行【有就加入,没有就不管了】
  • MANDATORY:必须运行在一个事务中,如果当前没有事务正在发生,将抛出一个异常【有就加入,没有就抛异常】
  • REQUIRES_NEW:开启一个新的事务,如果一个事务已经存在,则将这个存在的事务挂起【不管有没有,直接开启一个新事务,开启的新事务和之前的事务不存在嵌套关系,之前事务被挂起】
  • NOT_SUPPORTED:以非事务方式运行,如果有事务存在,挂起当前事务【不支持事务,存在就挂起】
  • NEVER:以非事务方式运行,如果有事务存在,抛出异常【不支持事务,存在就抛异常】
  • NESTED:如果当前正有一个事务在进行中,则该方法应当运行在一个嵌套式事务中。被嵌套的事务可以独立于外层事务进行提交或回滚。如果外层事务不存在,行为就像REQUIRED一样。【有事务的话,就在这个事务里再嵌套一个完全独立的事务,嵌套的事务可以独立的提交和回滚。没有事务就和REQUIRED一样。】

在代码中设置事务的传播行为:

@Transactional(propagation = Propagation.REQUIRED)

可以编写程序测试一下传播行为:

@Transactional(propagation = Propagation.REQUIRED)
public void save(Account act) {

    // 这里调用dao的insert方法。
    accountDao.insert(act); // 保存act-003账户

    // 创建账户对象
    Account act2 = new Account("act-004", 1000.0);
    try {
        accountService.save(act2); // 保存act-004账户
    } catch (Exception e) {

    }
    // 继续往后进行我当前1号事务自己的事儿。
}
@Override
//@Transactional(propagation = Propagation.REQUIRED)
@Transactional(propagation = Propagation.REQUIRES_NEW)
public void save(Account act) {
    accountDao.insert(act);
    // 模拟异常
    String s = null;
    s.toString();

    // 事儿没有处理完,这个大括号当中的后续也许还有其他的DML语句。
}

一定要集成Log4j2日志框架,在日志信息中可以看到更加详细的信息。

事务隔离级别

事务隔离级别类似于教室A和教室B之间的那道墙,隔离级别越高表示墙体越厚。隔音效果越好。
数据库中读取数据存在的三大问题:(三大读问题)

  • 脏读:读取到没有提交到数据库的数据,叫做脏读。
  • 不可重复读:在同一个事务当中,第一次和第二次读取的数据不一样。
  • 幻读:读到的数据是假的。

事务隔离级别包括四个级别:

  • 读未提交:READ_UNCOMMITTED
    • 这种隔离级别,存在脏读问题,所谓的脏读(dirty read)表示能够读取到其它事务未提交的数据。
  • 读提交:READ_COMMITTED
    • 解决了脏读问题,其它事务提交之后才能读到,但存在不可重复读问题。
  • 可重复读:REPEATABLE_READ
    • 解决了不可重复读,可以达到可重复读效果,只要当前事务不结束,读取到的数据一直都是一样的。但存在幻读问题。
  • 序列化:SERIALIZABLE
    • 解决了幻读问题,事务排队执行。不支持并发。

大家可以通过一个表格来记忆:

隔离级别 脏读 不可重复读 幻读
读未提交
读提交
可重复读
序列化

在Spring代码中如何设置隔离级别?
隔离级别在spring中以枚举类型存在:
image.png

@Transactional(isolation = Isolation.READ_COMMITTED)

测试事务隔离级别:READ_UNCOMMITTED 和 READ_COMMITTED
怎么测试:一个service负责插入,一个service负责查询。负责插入的service要模拟延迟。

package com.powernode.bank.service.impl;

import com.powernode.bank.dao.AccountDao;
import com.powernode.bank.pojo.Account;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Isolation;
import org.springframework.transaction.annotation.Transactional;

/**
 * @author 动力节点
 * @version 1.0
 * @className IsolationService1
 * @since 1.0
 **/
@Service("i1")
public class IsolationService1 {

    @Resource(name = "accountDao")
    private AccountDao accountDao;

    // 1号
    // 负责查询
    // 当前事务可以读取到别的事务没有提交的数据。
    //@Transactional(isolation = Isolation.READ_UNCOMMITTED)
    // 对方事务提交之后的数据我才能读取到。
    @Transactional(isolation = Isolation.READ_COMMITTED)
    public void getByActno(String actno) {
        Account account = accountDao.selectByActno(actno);
        System.out.println("查询到的账户信息:" + account);
    }

}
package com.powernode.bank.service.impl;

import com.powernode.bank.dao.AccountDao;
import com.powernode.bank.pojo.Account;
import jakarta.annotation.Resource;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

/**
 * @author 动力节点
 * @version 1.0
 * @className IsolationService2
 * @since 1.0
 **/
@Service("i2")
public class IsolationService2 {

    @Resource(name = "accountDao")
    private AccountDao accountDao;

    // 2号
    // 负责insert
    @Transactional
    public void save(Account act) {
        accountDao.insert(act);
        // 睡眠一会
        try {
            Thread.sleep(1000 * 20);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

}

测试程序

@Test
public void testIsolation1(){
    ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    IsolationService1 i1 = applicationContext.getBean("i1", IsolationService1.class);
    i1.getByActno("act-004");
}

@Test
public void testIsolation2(){
    ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
    IsolationService2 i2 = applicationContext.getBean("i2", IsolationService2.class);
    Account act = new Account("act-004", 1000.0);
    i2.save(act);
}

通过执行结果可以清晰的看出隔离级别不同,执行效果不同。

事务超时

代码如下:

@Transactional(timeout = 10)

以上代码表示设置事务的超时时间为10秒。
表示超过10秒如果该事务中所有的DML语句还没有执行完毕的话,最终结果会选择回滚。
默认值-1,表示没有时间限制。
这里有个坑,事务的超时时间指的是哪段时间?
在当前事务当中,最后一条DML语句执行之前的时间。如果最后一条DML语句后面很有很多业务逻辑,这些业务代码执行的时间不被计入超时时间。

@Transactional(timeout = 10) // 设置事务超时时间为10秒。
public void save(Account act) {
    accountDao.insert(act);
    // 睡眠一会
    try {
        Thread.sleep(1000 * 15);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}
@Transactional(timeout = 10) // 设置事务超时时间为10秒。
public void save(Account act) {
    // 睡眠一会
    try {
        Thread.sleep(1000 * 15);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    accountDao.insert(act);
}

当然,如果想让整个方法的所有代码都计入超时时间的话,可以在方法最后一行添加一行无关紧要的DML语句。

只读事务

代码如下:

@Transactional(readOnly = true)

将当前事务设置为只读事务,在该事务执行过程中只允许select语句执行,delete insert update均不可执行。
该特性的作用是:启动spring的优化策略。提高select语句执行效率。
如果该事务中确实没有增删改操作,建议设置为只读事务。

设置哪些异常回滚事务

代码如下:

@Transactional(rollbackFor = RuntimeException.class)

表示只有发生RuntimeException异常或该异常的子类异常才回滚。

设置哪些异常不回滚事务

代码如下:

@Transactional(noRollbackFor = NullPointerException.class)

表示发生NullPointerException或该异常的子类异常不回滚,其他异常则回滚。

事务的全注解式开发

编写一个类来代替配置文件,代码如下:

package com.powernode.bank;

import com.alibaba.druid.pool.DruidDataSource;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.annotation.EnableTransactionManagement;

import javax.sql.DataSource;

/**
 * @author 动力节点
 * @version 1.0
 * @className Spring6Config
 * @since 1.0
 **/
@Configuration
@ComponentScan("com.powernode.bank")
@EnableTransactionManagement
public class Spring6Config {

    @Bean
    public DataSource getDataSource(){
        DruidDataSource dataSource = new DruidDataSource();
        dataSource.setDriverClassName("com.mysql.cj.jdbc.Driver");
        dataSource.setUrl("jdbc:mysql://localhost:3306/spring6");
        dataSource.setUsername("root");
        dataSource.setPassword("root");
        return dataSource;
    }

    @Bean(name = "jdbcTemplate")
    public JdbcTemplate getJdbcTemplate(DataSource dataSource){
        JdbcTemplate jdbcTemplate = new JdbcTemplate();
        jdbcTemplate.setDataSource(dataSource);
        return jdbcTemplate;
    }

    @Bean
    public DataSourceTransactionManager getDataSourceTransactionManager(DataSource dataSource){
        DataSourceTransactionManager dataSourceTransactionManager = new DataSourceTransactionManager();
        dataSourceTransactionManager.setDataSource(dataSource);
        return dataSourceTransactionManager;
    }

}

测试程序如下:

@Test
public void testNoXml(){
    ApplicationContext applicationContext = new AnnotationConfigApplicationContext(Spring6Config.class);
    AccountService accountService = applicationContext.getBean("accountService", AccountService.class);
    try {
        accountService.transfer("act-001", "act-002", 10000);
        System.out.println("转账成功");
    } catch (Exception e) {
        e.printStackTrace();
    }
}

执行结果:
image.png
数据库表中数据:
image.png

声明式事务之XML实现方式

配置步骤:

  • 第一步:配置事务管理器
  • 第二步:配置通知
  • 第三步:配置切面

记得添加aspectj的依赖:

<!--aspectj依赖-->
<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-aspects</artifactId>
  <version>6.0.0-M2</version>
</dependency>

Spring配置文件如下:
记得添加aop的命名空间。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
                           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">

    <context:component-scan base-package="com.powernode.bank"/>

    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/spring6"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>

    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--配置事务管理器-->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--配置通知-->
    <tx:advice id="txAdvice" transaction-manager="txManager">
        <tx:attributes>
            <tx:method name="save*" propagation="REQUIRED" rollback-for="java.lang.Throwable"/>
            <tx:method name="del*" propagation="REQUIRED" rollback-for="java.lang.Throwable"/>
            <tx:method name="update*" propagation="REQUIRED" rollback-for="java.lang.Throwable"/>
            <tx:method name="transfer*" propagation="REQUIRED" rollback-for="java.lang.Throwable"/>
        </tx:attributes>
    </tx:advice>

    <!--配置切面-->
    <aop:config>
        <aop:pointcut id="txPointcut" expression="execution(* com.powernode.bank.service..*(..))"/>
        <!--切面 = 通知 + 切点-->
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointcut"/>
    </aop:config>

</beans>

将AccountServiceImpl类上的@Transactional注解删除。
编写测试程序:

@Test
public void testTransferXml(){
    ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring2.xml");
    AccountService accountService = applicationContext.getBean("accountService", AccountService.class);
    try {
        accountService.transfer("act-001", "act-002", 10000);
        System.out.println("转账成功");
    } catch (Exception e) {
        e.printStackTrace();
    }
}

执行结果:
image.png
数据库表中记录:
image.png
通过测试可以看到配置XML已经起作用了。

十七、Spring6整合JUnit5

17.1 Spring对JUnit4的支持

准备工作:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.powernode</groupId>
    <artifactId>spring6-015-junit</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <!--仓库-->
    <repositories>
        <!--spring里程碑版本的仓库-->
        <repository>
            <id>repository.spring.milestone</id>
            <name>Spring Milestone Repository</name>
            <url>https://repo.spring.io/milestone</url>
        </repository>
    </repositories>

    <dependencies>
        <!--spring context依赖-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>6.0.0-M2</version>
        </dependency>
        <!--spring对junit的支持相关依赖-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>6.0.0-M2</version>
        </dependency>
        <!--junit4依赖-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.2</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>

</project>
package com.powernode.spring6.bean;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

/**
 * @author 动力节点
 * @version 1.0
 * @className User
 * @since 1.0
 **/
@Component
public class User {

    @Value("张三")
    private String name;

    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                '}';
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public User() {
    }

    public User(String name) {
        this.name = name;
    }
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
    <context:component-scan base-package="com.powernode.spring6.bean"/>
</beans>

单元测试:

package com.powernode.spring6.test;

import com.powernode.spring6.bean.User;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

/**
 * @author 动力节点
 * @version 1.0
 * @className SpringJUnit4Test
 * @since 1.0
 **/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:spring.xml")
public class SpringJUnit4Test {

    @Autowired
    private User user;

    @Test
    public void testUser(){
        System.out.println(user.getName());
    }
}

执行结果如下:
image.png
Spring提供的方便主要是这几个注解:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(“classpath:spring.xml”)
在单元测试类上使用这两个注解之后,在单元测试类中的属性上可以使用@Autowired。比较方便。

17.2 Spring对JUnit5的支持

引入JUnit5的依赖,Spring对JUnit支持的依赖还是:spring-test,如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.powernode</groupId>
    <artifactId>spring6-015-junit</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <!--仓库-->
    <repositories>
        <!--spring里程碑版本的仓库-->
        <repository>
            <id>repository.spring.milestone</id>
            <name>Spring Milestone Repository</name>
            <url>https://repo.spring.io/milestone</url>
        </repository>
    </repositories>

    <dependencies>
        <!--spring context依赖-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>6.0.0-M2</version>
        </dependency>
        <!--spring对junit的支持相关依赖-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>6.0.0-M2</version>
        </dependency>
        <!--junit5依赖-->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.9.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
    </properties>

</project>
package com.powernode.spring6.test;

import com.powernode.spring6.bean.User;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;


@ExtendWith(SpringExtension.class)
@ContextConfiguration("classpath:spring.xml")
public class SpringJUnit5Test {

    @Autowired
    private User user;

    @Test
    public void testUser(){
        System.out.println(user.getName());
    }
}

在JUnit5当中,可以使用Spring提供的以下两个注解,标注到单元测试类上,这样在类当中就可以使用@Autowired注解了。
@ExtendWith(SpringExtension.class)
@ContextConfiguration(“classpath:spring.xml”)

十八、Spring6集成MyBatis3.5

18.1 实现步骤

  • 第一步:准备数据库表
    • 使用t_act表(账户表)
  • 第二步:IDEA中创建一个模块,并引入依赖
    • spring-context
    • spring-jdbc
    • mysql驱动
    • mybatis
    • mybatis-spring:mybatis提供的与spring框架集成的依赖
    • 德鲁伊连接池
    • junit
  • 第三步:基于三层架构实现,所以提前创建好所有的包
    • com.powernode.bank.mapper
    • com.powernode.bank.service
    • com.powernode.bank.service.impl
    • com.powernode.bank.pojo
  • 第四步:编写pojo
    • Account,属性私有化,提供公开的setter getter和toString。
  • 第五步:编写mapper接口
    • AccountMapper接口,定义方法
  • 第六步:编写mapper配置文件
    • 在配置文件中配置命名空间,以及每一个方法对应的sql。
  • 第七步:编写service接口和service接口实现类
    • AccountService
    • AccountServiceImpl
  • 第八步:编写jdbc.properties配置文件
    • 数据库连接池相关信息
  • 第九步:编写mybatis-config.xml配置文件
    • 该文件可以没有,大部分的配置可以转移到spring配置文件中。
    • 如果遇到mybatis相关的系统级配置,还是需要这个文件。
  • 第十步:编写spring.xml配置文件
    • 组件扫描
    • 引入外部的属性文件
    • 数据源
    • SqlSessionFactoryBean配置
      • 注入mybatis核心配置文件路径
      • 指定别名包
      • 注入数据源
    • Mapper扫描配置器
      • 指定扫描的包
    • 事务管理器DataSourceTransactionManager
      • 注入数据源
    • 启用事务注解
      • 注入事务管理器
  • 第十一步:编写测试程序,并添加事务,进行测试

    18.2 具体实现

  • 第一步:准备数据库表

连接数据库的工具有很多,除了之前我们使用的navicat for mysql之外,也可以使用IDEA工具自带的DataBase插件。可以根据下图提示自行配置:
image.png
image.png

  • 第二步:IDEA中创建一个模块,并引入依赖 ```xml <?xml version=”1.0” encoding=”UTF-8”?> <project xmlns=”http://maven.apache.org/POM/4.0.0

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    
    4.0.0

    com.powernode spring6-016-sm 1.0-SNAPSHOT

    jar repository.spring.milestone Spring Milestone Repository https://repo.spring.io/milestone org.springframework spring-context 6.0.0-M2 org.springframework spring-jdbc 6.0.0-M2 mysql mysql-connector-java 8.0.30 org.mybatis mybatis 3.5.11 org.mybatis mybatis-spring 2.0.7 com.alibaba druid 1.2.13 junit junit 4.13.2 test 17 17


- 第三步:基于三层架构实现,所以提前创建好所有的包

![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1666660021872-5935b222-7e72-41d9-a9e1-c532ca29ef10.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_11%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23fbfaf9&clientId=u73ffb7ec-cc40-4&from=paste&height=151&id=u1dc2848e&originHeight=151&originWidth=237&originalType=binary&ratio=1&rotation=0&showTitle=false&size=3561&status=done&style=shadow&taskId=ud1da6287-9713-4210-bc5c-7124e009c3d&title=&width=237)

- 第四步:编写pojo
```java
package com.powernode.bank.pojo;

/**
 * @author 动力节点
 * @version 1.0
 * @className Account
 * @since 1.0
 **/
public class Account {
    private String actno;
    private Double balance;

    @Override
    public String toString() {
        return "Account{" +
                "actno='" + actno + '\'' +
                ", balance=" + balance +
                '}';
    }

    public Account() {
    }

    public Account(String actno, Double balance) {
        this.actno = actno;
        this.balance = balance;
    }

    public String getActno() {
        return actno;
    }

    public void setActno(String actno) {
        this.actno = actno;
    }

    public Double getBalance() {
        return balance;
    }

    public void setBalance(Double balance) {
        this.balance = balance;
    }
}
  • 第五步:编写mapper接口 ```java package com.powernode.bank.mapper;

import com.powernode.bank.pojo.Account;

import java.util.List;

/**

  • @author 动力节点
  • @version 1.0
  • @className AccountMapper
  • @since 1.0 **/ public interface AccountMapper {

    /**

    • 保存账户
    • @param account
    • @return */ int insert(Account account);

      /**

    • 根据账号删除账户
    • @param actno
    • @return */ int deleteByActno(String actno);

      /**

    • 修改账户
    • @param account
    • @return */ int update(Account account);

      /**

    • 根据账号查询账户
    • @param actno
    • @return */ Account selectByActno(String actno);

      /**

    • 获取所有账户
    • @return */ List selectAll(); }

- 第六步:编写mapper配置文件

一定要注意,按照下图提示创建这个目录。注意是斜杠不是点儿。在resources目录下新建。并且要和Mapper接口包对应上。<br />![image.png](https://cdn.nlark.com/yuque/0/2022/png/21376908/1666660299388-b2e278e1-497d-4357-835c-ca95bfd87f0e.png?x-oss-process=image%2Fwatermark%2Ctype_d3F5LW1pY3JvaGVp%2Csize_15%2Ctext_5Yqo5Yqb6IqC54K5%2Ccolor_FFFFFF%2Cshadow_50%2Ct_80%2Cg_se%2Cx_10%2Cy_10#averageHue=%23f6f0ee&clientId=u73ffb7ec-cc40-4&from=paste&height=269&id=ua3500e97&originHeight=269&originWidth=536&originalType=binary&ratio=1&rotation=0&showTitle=false&size=28659&status=done&style=shadow&taskId=u36c618c7-8cdc-4268-9d47-80daab48502&title=&width=536)<br />如果接口叫做AccountMapper,配置文件必须是AccountMapper.xml
```xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.powernode.bank.mapper.AccountMapper">
    <insert id="insert">
        insert into t_act values(#{actno}, #{balance})
    </insert>
    <delete id="deleteByActno">
        delete from t_act where actno = #{actno}
    </delete>
    <update id="update">
        update t_act set balance = #{balance} where actno = #{actno}
    </update>
    <select id="selectByActno" resultType="Account">
        select * from t_act where actno = #{actno}
    </select>
    <select id="selectAll" resultType="Account">
        select * from t_act
    </select>
</mapper>
  • 第七步:编写service接口和service接口实现类

注意编写的service实现类纳入IoC容器管理:

package com.powernode.bank.service;

import com.powernode.bank.pojo.Account;

import java.util.List;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountService
 * @since 1.0
 **/
public interface AccountService {
    /**
     * 开户
     * @param act
     * @return
     */
    int save(Account act);

    /**
     * 根据账号销户
     * @param actno
     * @return
     */
    int deleteByActno(String actno);

    /**
     * 修改账户
     * @param act
     * @return
     */
    int update(Account act);

    /**
     * 根据账号获取账户
     * @param actno
     * @return
     */
    Account getByActno(String actno);

    /**
     * 获取所有账户
     * @return
     */
    List<Account> getAll();

    /**
     * 转账
     * @param fromActno
     * @param toActno
     * @param money
     */
    void transfer(String fromActno, String toActno, double money);
}
package com.powernode.bank.service.impl;

import com.powernode.bank.mapper.AccountMapper;
import com.powernode.bank.pojo.Account;
import com.powernode.bank.service.AccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * @author 动力节点
 * @version 1.0
 * @className AccountServiceImpl
 * @since 1.0
 **/
@Transactional
@Service("accountService")
public class AccountServiceImpl implements AccountService {

    @Autowired
    private AccountMapper accountMapper;

    @Override
    public int save(Account act) {
        return accountMapper.insert(act);
    }

    @Override
    public int deleteByActno(String actno) {
        return accountMapper.deleteByActno(actno);
    }

    @Override
    public int update(Account act) {
        return accountMapper.update(act);
    }

    @Override
    public Account getByActno(String actno) {
        return accountMapper.selectByActno(actno);
    }

    @Override
    public List<Account> getAll() {
        return accountMapper.selectAll();
    }

    @Override
    public void transfer(String fromActno, String toActno, double money) {
        Account fromAct = accountMapper.selectByActno(fromActno);
        if (fromAct.getBalance() < money) {
            throw new RuntimeException("余额不足");
        }
        Account toAct = accountMapper.selectByActno(toActno);
        fromAct.setBalance(fromAct.getBalance() - money);
        toAct.setBalance(toAct.getBalance() + money);
        int count = accountMapper.update(fromAct);
        count += accountMapper.update(toAct);
        if (count != 2) {
            throw new RuntimeException("转账失败");
        }
    }
}
  • 第八步:编写jdbc.properties配置文件

放在类的根路径下

jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/spring6
jdbc.username=root
jdbc.password=root
  • 第九步:编写mybatis-config.xml配置文件

放在类的根路径下,只开启日志,其他配置到spring.xml中。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <settings>
        <setting name="logImpl" value="STDOUT_LOGGING"/>
    </settings>
</configuration>
  • 第十步:编写spring.xml配置文件

注意:当你在spring.xml文件中直接写标签内容时,IDEA会自动给你添加命名空间

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!--组件扫描-->
    <context:component-scan base-package="com.powernode.bank"/>

    <!--外部属性配置文件-->
    <context:property-placeholder location="jdbc.properties"/>

    <!--数据源-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>

    <!--SqlSessionFactoryBean-->
    <bean class="org.mybatis.spring.SqlSessionFactoryBean">
        <!--mybatis核心配置文件路径-->
        <property name="configLocation" value="mybatis-config.xml"/>
        <!--注入数据源-->
        <property name="dataSource" ref="dataSource"/>
        <!--起别名-->
        <property name="typeAliasesPackage" value="com.powernode.bank.pojo"/>
    </bean>

    <!--Mapper扫描器-->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.powernode.bank.mapper"/>
    </bean>

    <!--事务管理器-->
    <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"/>
    </bean>

    <!--开启事务注解-->
    <tx:annotation-driven transaction-manager="txManager"/>

</beans>
  • 第十一步:编写测试程序,并添加事务,进行测试 ```java package com.powernode.spring6.test;

import com.powernode.bank.service.AccountService; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;

/**

  • @author 动力节点
  • @version 1.0
  • @className SMTest
  • @since 1.0 **/ public class SMTest {

    @Test public void testSM(){

     ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");
     AccountService accountService = applicationContext.getBean("accountService", AccountService.class);
     try {
         accountService.transfer("act-001", "act-002", 10000.0);
         System.out.println("转账成功");
     } catch (Exception e) {
         e.printStackTrace();
         System.out.println("转账失败");
     }
    

    }

}

**最后大家别忘了测试事务!!!!**
<a name="HBlJr"></a>
## 18.3 Spring配置文件的import
spring配置文件有多个,并且可以在spring的核心配置文件中使用import进行引入,我们可以将组件扫描单独定义到一个配置文件中,如下:
```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"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">

    <!--组件扫描-->
    <context:component-scan base-package="com.powernode.bank"/>

</beans>

然后在核心配置文件中引入:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!--引入其他的spring配置文件-->
    <import resource="common.xml"/>

</beans>

注意:在实际开发中,service单独配置到一个文件中,dao单独配置到一个文件中,然后在核心配置文件中引入,养成好习惯。

十九、Spring中的八大模式

19.1 简单工厂模式

BeanFactory的getBean()方法,通过唯一标识来获取Bean对象。是典型的简单工厂模式(静态工厂模式);

19.2 工厂方法模式

FactoryBean是典型的工厂方法模式。在配置文件中通过factory-method属性来指定工厂方法,该方法是一个实例方法。

19.3 单例模式

Spring用的是双重判断加锁的单例模式。请看下面代码,我们之前讲解Bean的循环依赖的时候见过:
image.png

19.4 代理模式

Spring的AOP就是使用了动态代理实现的。

19.5 装饰器模式

JavaSE中的IO流是非常典型的装饰器模式。
Spring 中配置 DataSource 的时候,这些dataSource可能是各种不同类型的,比如不同的数据库:Oracle、SQL Server、MySQL等,也可能是不同的数据源:比如apache 提供的org.apache.commons.dbcp.BasicDataSource、spring提供的org.springframework.jndi.JndiObjectFactoryBean等。
这时,能否在尽可能少修改原有类代码下的情况下,做到动态切换不同的数据源?此时就可以用到装饰者模式。
Spring根据每次请求的不同,将dataSource属性设置成不同的数据源,以到达切换数据源的目的。
Spring中类名中带有:Decorator和Wrapper单词的类,都是装饰器模式。

19.6 观察者模式

定义对象间的一对多的关系,当一个对象的状态发生改变时,所有依赖于它的对象都得到通知并自动更新。Spring中观察者模式一般用在listener的实现。
Spring中的事件编程模型就是观察者模式的实现。在Spring中定义了一个ApplicationListener接口,用来监听Application的事件,Application其实就是ApplicationContext,ApplicationContext内置了几个事件,其中比较容易理解的是:ContextRefreshedEvent、ContextStartedEvent、ContextStoppedEvent、ContextClosedEvent

19.7 策略模式

策略模式是行为性模式,调用不同的方法,适应行为的变化 ,强调父类的调用子类的特性 。
getHandler是HandlerMapping接口中的唯一方法,用于根据请求找到匹配的处理器。
比如我们自己写了AccountDao接口,然后这个接口下有不同的实现类:AccountDaoForMySQL,AccountDaoForOracle。对于service来说不需要关心底层具体的实现,只需要面向AccountDao接口调用,底层可以灵活切换实现,这就是策略模式。

19.8 模板方法模式

Spring中的JdbcTemplate类就是一个模板类。它就是一个模板方法设计模式的体现。在模板类的模板方法execute中编写核心算法,具体的实现步骤在子类中完成。