Spring Framework源码编译,开始Spring源码学习

简介: 本文是博主学习Spring源码的记录,希望对大家有所帮助。

🍀Spring Framework源码编译

博主本地java版本为 java version "11.0.10"

🍀拉取源码

选定存放路径直接只用git clone拉取最新源码

git clone https://github.com/spring-projects/spring-framework.git

目前最新RELEASE版本是5.2.18,编译前需要将tag切换至这个版本。
在这里插入图片描述

git checkout a1225f0

在这里插入图片描述

🍀修改仓库镜像地址,加快依赖下载速度

vim  build.gradle

进入后直接输入/repositories,搜索仓库镜像设置。
在这里插入图片描述
加下来添加阿里云的镜像地址。
回车后,按i进入编辑模式,输入以下代码。

// 阿里云
maven {url "https://maven.aliyun.com/nexus/content/groups/public/"} 
maven {url "https://maven.aliyun.com/nexus/content/repositories/jcenter"}

在这里插入图片描述
ESC后,输入:wq保存并退出。

🍀源码命令行编译测试

使用以下两条指令进行编译测试

./gradlew :spring-oxm:compileTestJava // 官方建议
./gradlew :spring-core:compileTestJava

在这里插入图片描述
在这里插入图片描述

🍀导入IDEA

idea版本
在这里插入图片描述
导入IDEA后会自动编译,会自动重新下载依赖。

☘️创建一个新的Module

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
创建Module成功。

☘️给Module加依赖

compile(project(":spring-context"))

在这里插入图片描述
添加依赖后,需要重新加载。

🍀使用ApplicationContext获取自定义的Bean

在这里插入图片描述

package com.ber.service;

/**
 * @author ber
 * @version 1.0
 * @date 21/11/9 13:12
 */
public interface MsgService {
    String getMsg();
}
package com.ber.service.impl;

import com.ber.service.MsgService;
import org.springframework.stereotype.Service;

/**
 * @author ber
 * @version 1.0
 * @date 21/11/9 13:13
 */
@Service("msg")
public class MsgServiceImpl implements MsgService {
    @Override
    public String getMsg() {
        return "Hello Ber!";
    }
}
package com.ber;

import com.ber.service.MsgService;
import com.ber.service.impl.MsgServiceImpl;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;

import java.util.Arrays;

/**
 * @author ber
 * @version 1.0
 * @date 21/11/9 13:18
 */
@ComponentScan({"com.ber"})
public class Application {
    public static void main(String[] args) {
        ApplicationContext context = new AnnotationConfigApplicationContext(Application.class);
        MsgService msgService = (MsgServiceImpl) context.getBean("msg");
        System.out.println(msgService.getMsg());
        System.out.println(context.getBeanDefinitionCount());
        Arrays.stream(context.getBeanDefinitionNames()).forEach(System.out::println);

        Application application = (Application) context.getBean("application");
        System.out.println(application.getMsg());
    }

    public String getMsg() {
        return "Hello Ber!!!";
    }
}

@Service注解是在spring-context中,前面依赖导入的作用就体现了。指定msgcomponent name

@ComponentScan注解也是在spring-context中,这里指定扫描包com.ber下的component names

在程序中通过AnnotationConfigApplicationContext来获取由Spring自动创建的msgapplication这两个Bean,并且调用其方法。
在这里插入图片描述

☘️运行测试

在这里插入图片描述
这里可以看出一共有6个Bean,我们定义了2个Bean,分别是msgapplication。通过AnnotationConfigApplicationContext获取Bean也成功获取到了其中的方法。

目录
相关文章
|
3天前
|
监控 Java 应用服务中间件
高级java面试---spring.factories文件的解析源码API机制
【11月更文挑战第20天】Spring Boot是一个用于快速构建基于Spring框架的应用程序的开源框架。它通过自动配置、起步依赖和内嵌服务器等特性,极大地简化了Spring应用的开发和部署过程。本文将深入探讨Spring Boot的背景历史、业务场景、功能点以及底层原理,并通过Java代码手写模拟Spring Boot的启动过程,特别是spring.factories文件的解析源码API机制。
14 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
|
29天前
|
前端开发 Java 数据库
SpringBoot学习
【10月更文挑战第7天】Spring学习
34 9
|
30天前
|
XML Java 数据格式
Spring学习
【10月更文挑战第6天】Spring学习
19 1
|
1月前
|
Java Spring
Spring底层架构源码解析(三)
Spring底层架构源码解析(三)
108 5
|
1月前
|
XML Java 数据格式
Spring底层架构源码解析(二)
Spring底层架构源码解析(二)
|
1月前
|
Java 测试技术 开发者
springboot学习四:Spring Boot profile多环境配置、devtools热部署
这篇文章主要介绍了如何在Spring Boot中进行多环境配置以及如何整合DevTools实现热部署,以提高开发效率。
56 2
|
1月前
|
前端开发 Java 程序员
springboot 学习十五:Spring Boot 优雅的集成Swagger2、Knife4j
这篇文章是关于如何在Spring Boot项目中集成Swagger2和Knife4j来生成和美化API接口文档的详细教程。
84 1
|
1月前
|
Java API Spring
springboot学习七:Spring Boot2.x 拦截器基础入门&实战项目场景实现
这篇文章是关于Spring Boot 2.x中拦截器的入门教程和实战项目场景实现的详细指南。
25 0
springboot学习七:Spring Boot2.x 拦截器基础入门&实战项目场景实现