深度挖掘Spring IoC核心模块源码的宝藏

简介: 深度挖掘Spring IoC核心模块源码的宝藏

Spring 通过配置文件加载 Bean


开始本文的内容之前你得要搭建好 Spring 源码的环境,不会搭建的可以去查阅查阅我之前写的 Spring源码编译

在 resources 当中创建配置文件 spring-config.xml

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


在配置文件当中添加配置:

<bean id="userService" class="top.it6666.service.UserServiceImpl"/>


在工程当中创建业务类:


UserService.java

/**
 * @author yby6
 * @program spring
 * @date Created in 2023/9/29 029 11:39
 * @description
 **/
public interface UserService {
   /**
    * 显示
    */
   void show();
}

UserServiceImpl.java

/**
 * @author yby6
 * @program spring
 * @date Created in 2023/9/29 029 11:40
 * @description
 **/
public class UserServiceImpl implements UserService {
   @Override
   public void show() {
      System.out.println("Hello Spring");
   }
}




验证


在测试类当中,编写创建容器,获取 Bean,进行测试:

/**
 * @author yby6
 * @program spring
 * @date Created in 2023/9/29 029 11:42
 * @description
 **/
public class SpringTest {
   public static void main(String[] args) {
      ApplicationContext applicationContext = new FileSystemXmlApplicationContext("classpath:spring-config.xml");
      UserService userService = (UserService) applicationContext.getBean("userService");
      userService.show();
   }
}





Spring 通过注解加载 Bean


在测试类上添加注解 @Configuration包扫描

在业务类上方添加 Spring 相关注解注入到 Spring IOC 容器当中:




验证


更改之前的测试类,通过注解加载容器,获取 Bean 元素:

public static void main(String[] args) {
   // 通过注解获取容器
   AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringTest.class);
   UserService userService = (UserService) applicationContext.getBean("userServiceImpl");
   userService.show();
   UserController userController = (UserController) applicationContext.getBean("userController");
   userController.showMethod();
   System.out.println("===========================");
   // 扩展内容,可以通过上下文对象获取所有管理的Bean name,通过getBeanDefinitionNames()获取
   String[] beanDefinitionNames = applicationContext.getBeanDefinitionNames();
   for (String beanDefinitionName : beanDefinitionNames) {
      System.out.println(beanDefinitionName);
   }
}

整体流程,解析配置,定位与注解对象,注入对象,无论是通过 xml 还是注解的方式都需要经过解析和加载然后在注入对象放入到 IOC 容器当中




Spring 中常见配置


关于 bean

在 Spring 当中一切都是围绕 Bean 进行,Bean 本质就是 Java 对象, 平时由我们自己来进行创建, 有了 Spring 后, Bean 的创建全部交给了 Spring,不需要在原来创建 Bean 的地方添加任何的额外信息,这些额外的信息全部通过配置文件进行控制。

关于:BeanDefinition,在 Spring 运行过程当中,会根据配置生成用来描述 Bean 的 BeanDefinition




作用范围


  • @Scope

关于取值:

  • singleton
  • prototype
  • request
  • session
  • globalsession




懒加载

  • @Lazy

定义 Bean 是否为延时加载, 如果为 true 会在真正使用 Bean 的时候才加载




首选


  • @Primary

值为 true,Bean 会优先实现类,如果按照类型装配时,如果存在一个接口对应多个实现类,多个实现类中被 Primary 为 true 的类会优先当做接口的实现类进行装配

还可以通过 Factory-bean 和 Factory-method(@configuration 和 @Bean) 从工厂 Bean 或工厂方法当中获取 Bean。





Bean 配置演示


创建 entity 包,在该包中创建实体类 Student:

在 xml 配置文件当中添加配置:

<bean id="student" class="top.it6666.entiry.Student"
     scope="singleton"
/>


验证:

public static void main(String[] args) {
   ApplicationContext applicationContext = new FileSystemXmlApplicationContext("classpath:spring-config.xml");
   for (String beanDefinitionName : applicationContext.getBeanDefinitionNames()) {
      System.out.println(beanDefinitionName);
   }
   Student student1 = (Student) applicationContext.getBean("student");
   Student student2 = (Student) applicationContext.getBean("student");
   System.out.println(student1);
   System.out.println(student2);
}


如上的 bean 配置添加了 scope 并且配置为了单例所以创建出来的对象内存地址都是同一个,在来看看  Primary 当一个接口存在多个实现类会优先注入为 true 的实现类,先来看这一点吧,再次新建一个实现类 QqUserServiceImpl.java:

/**
 * @author yby6
 * @program spring
 * @date Created in 2023/9/28 028 14:28
 * @description
 **/
@Service
public class QqUserServiceImpl implements UserService {
   @Override
   public void show() {
      System.out.println("QQ用户");
   }
}


修改 xml 添加配置:

<bean id="qqUserService" class="top.it6666.service.QqUserServiceImpl"
     primary="true"
/>


验证方式:

public static void main(String[] args) {
   ApplicationContext applicationContext = new FileSystemXmlApplicationContext("classpath:spring-config.xml");
   UserService userService = applicationContext.getBean(UserService.class);
   userService.show();
}

关于懒加载,目前利用 UserServiceImpl.java 测试懒加载,明确的实现 UserServiceImpl.java 的默认无参构造函数,在当中加一句打印代码:


紧接着修改 xml 配置文件添加懒加载配置,然后我们在运行测试类代码进行测试,如果打印了刚刚我们添加的打印信息就说明 Spring 已经加载了,没有打印就说明没有其他地方使用该资源,没有进行加载:


<bean id="userService" class="top.it6666.service.UserServiceImpl" lazy-init="true"/>

运行测试类:


并没有打印我们添加的日志信息所以说明没有加载,已经达到了懒加载效果,也就是延时加载的效果,我们在来看看使用了 UserServiceImpl.java 之后它的效果又是如何呢修改 QqUserServiceImpl.java:


/**
 * @author yby6
 * @program spring
 * @date Created in 2023/9/28 028 14:28
 * @description
 **/
@Service
public class QqUserServiceImpl implements UserService {
   private UserServiceImpl userServiceImpl;
   public void setUserServiceImpl(UserServiceImpl userServiceImpl) {
      this.userServiceImpl = userServiceImpl;
   }
   public UserServiceImpl getUserServiceImpl() {
      return this.userServiceImpl;
   }
   @Override
   public void show() {
      System.out.println("QQ用户");
   }
}


在 xml 当中进行属性注入:

<bean id="qqUserService" class="top.it6666.service.QqUserServiceImpl"
     primary="true"
>
   <property name="userServiceImpl" ref="userService"/>
</bean>


运行测试类代码:


创建 factory 包,在该包下创建 StudentFactory 类:


/**
 * @author yby6
 * @program spring
 * @date Created in 2023/9/28 028 14:00
 * @description
 **/
public class StudentFactory {
   public static Student getStudent() {
      return new Student();
   }
}


使用静态工厂创建实例(factory-method):

<bean id="student" class="top.it6666.factory.StudentFactory"
     factory-method="getStudent"
     scope="singleton"
/>


验证方式同上:




使用 FacotoryBean 创建对象


在 factory 包中创建 StudentFacotory,其实在如上我们已经创建该类,不一样的就是类当中 getStudent 方法是静态的,现在我们改为非静态方法如下:

创建过程,需要先创建 FactoryBean 对象,再通过该对象调用里面的方法进行创建 Bean。

<bean id="studentFactory" class="top.it6666.factory.StudentFactory"/>
<bean id="studentThree"
     factory-bean="studentFactory"
     factory-method="getStudent"
/>


测试验证一下,测试结果如下:

目前还没有讲解到关于 Spring IOC 源码的边缘,因为博主的想法就是想将该内容分为许多的小文章进行一一发布,所以这里就先简单的介绍一下 IOC 相关的内容就相当于一个回顾吧





最后


本期结束咱们下次再见👋~

🌊 关注我不迷路,如果本篇文章对你有所帮助,或者你有什么疑问,欢迎在评论区留言,我一般看到都会回复的。大家点赞支持一下哟~ 💗

相关文章
|
3天前
|
监控 Java 应用服务中间件
高级java面试---spring.factories文件的解析源码API机制
【11月更文挑战第20天】Spring Boot是一个用于快速构建基于Spring框架的应用程序的开源框架。它通过自动配置、起步依赖和内嵌服务器等特性,极大地简化了Spring应用的开发和部署过程。本文将深入探讨Spring Boot的背景历史、业务场景、功能点以及底层原理,并通过Java代码手写模拟Spring Boot的启动过程,特别是spring.factories文件的解析源码API机制。
15 2
|
19天前
|
数据采集 监控 前端开发
二级公立医院绩效考核系统源码,B/S架构,前后端分别基于Spring Boot和Avue框架
医院绩效管理系统通过与HIS系统的无缝对接,实现数据网络化采集、评价结果透明化管理及奖金分配自动化生成。系统涵盖科室和个人绩效考核、医疗质量考核、数据采集、绩效工资核算、收支核算、工作量统计、单项奖惩等功能,提升绩效评估的全面性、准确性和公正性。技术栈采用B/S架构,前后端分别基于Spring Boot和Avue框架。
|
9天前
|
前端开发 Java 开发者
Spring生态学习路径与源码深度探讨
【11月更文挑战第13天】Spring框架作为Java企业级开发中的核心框架,其丰富的生态系统和强大的功能吸引了无数开发者的关注。学习Spring生态不仅仅是掌握Spring Framework本身,更需要深入理解其周边组件和工具,以及源码的底层实现逻辑。本文将从Spring生态的学习路径入手,详细探讨如何系统地学习Spring,并深入解析各个重点的底层实现逻辑。
35 9
|
18天前
|
XML 缓存 Java
搞透 IOC、Spring IOC ,看这篇就够了!
本文详细解析了Spring框架的核心内容——IOC(控制反转)及其依赖注入(DI)的实现原理,帮助读者理解如何通过IOC实现组件解耦,提高程序的灵活性和可维护性。关注【mikechen的互联网架构】,10年+BAT架构经验倾囊相授。
|
9天前
|
安全 Java 测试技术
Java开发必读,谈谈对Spring IOC与AOP的理解
Spring的IOC和AOP机制通过依赖注入和横切关注点的分离,大大提高了代码的模块化和可维护性。IOC使得对象的创建和管理变得灵活可控,降低了对象之间的耦合度;AOP则通过动态代理机制实现了横切关注点的集中管理,减少了重复代码。理解和掌握这两个核心概念,是高效使用Spring框架的关键。希望本文对你深入理解Spring的IOC和AOP有所帮助。
22 0
|
1月前
|
Java Spring
Spring底层架构源码解析(三)
Spring底层架构源码解析(三)
108 5
|
1月前
|
XML Java 数据格式
Spring底层架构源码解析(二)
Spring底层架构源码解析(二)
|
1月前
|
设计模式 JavaScript Java
Spring 事件监听机制源码
Spring 提供了事件发布订阅机制,广泛应用于项目中。本文介绍了如何通过自定义事件类、订阅类和发布类实现这一机制,并展示了如何监听 SpringBoot 启动过程中的多个事件(如 `ApplicationStartingEvent`、`ApplicationEnvironmentPreparedEvent` 等)。通过掌握这些事件,可以更好地理解 SpringBoot 的启动流程。示例代码展示了从事件发布到接收的完整过程。
|
30天前
|
XML Java 数据格式
Spring IOC容器的深度解析及实战应用
【10月更文挑战第14天】在软件工程中,随着系统规模的扩大,对象间的依赖关系变得越来越复杂,这导致了系统的高耦合度,增加了开发和维护的难度。为解决这一问题,Michael Mattson在1996年提出了IOC(Inversion of Control,控制反转)理论,旨在降低对象间的耦合度,提高系统的灵活性和可维护性。Spring框架正是基于这一理论,通过IOC容器实现了对象间的依赖注入和生命周期管理。
65 0
|
1月前
|
XML Java 数据格式
手动开发-简单的Spring基于注解配置的程序--源码解析
手动开发-简单的Spring基于注解配置的程序--源码解析
46 0