Spring5源码解析-前奏:本地构建Spring5源码

Posted dakunqq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring5源码解析-前奏:本地构建Spring5源码相关的知识,希望对你有一定的参考价值。

 

构建环境

  • macOS 10.13.6
  • JDK1.8
  • IntelliJ IDEA 2018.3.6 (Ultimate Edition)
  • Spring v5.1.9.RELEASE
  • Gradle 5.5.1。直接使用brew安装Gradle brew install gradle

源码构建

  1. 源码导入

技术图片

  1. 阅读Spring源码下的 import-into-idea.md 文件可知

Precompile spring-xingtuylgw.com oxm with ./gradlew :spring-oxm:compileTestJava

技术图片

  1. 修改 gradle/docs.gradle 脚本 一开始尝试直接构建Spring源码,在构建的过程中会报错,通过修改docs.gradle 脚本,注释 dokka 和 asciidoctor

技术图片

  1. 源码构建

技术图片

等了好长好长的时间,终于构建完成了。

技术图片

  1. 在Spring项目中新增一个自己的module,尝试运行hello world,引入spring-context 依赖 compile(project(":spring-context"))

技术图片

  1. 运行main方法,发现报错

Error:(160, 32) java: 找不到符号 符号: 变量InstrumentationSavingAgent 位置:

public class HttpClientHelper

public static bool DownloadBufferImage(string requestUri, /*HttpContent httpContent,*/string filePath, string jsonString, string webapiBaseUrl = "")

try

HttpContent httpContent = new StringContent(jsonString);
httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");

using (HttpClient httpClient = new HttpClient(www.baiyytwg.com/))

if (!string.IsNullOrWhiteSpace(webapiBaseUrl))

httpClient.www.sangyuLpt.com BaseAddress = new Uri(webapiBaseUrl);

bool result = false;
httpClient.PostAsync(requestUri, httpContent).ContinueWith(
(requestTask) =>

HttpResponseMessage response = requestTask.Result;

response.EnsureSuccessStatusCode();

var data = response.Content.ReadAsByteArrayAsync().Result;

using (FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write))

fs.Write(data, 0, data.Length);
fs.Flush(www.jintianxuesha.com);
fs.Close(www.rhyl158.com);

技术图片

网上搜索了一大堆的解决方法,发现都不行。后来看了spring-context的依赖发现,spring-instrument 在 spring-context 中为 optional 依赖(optional(project(":spring-instrument")) ),于是在自己的模块中添加spring-instrument依赖

技术图片

再次运行main方法,程序运行成功。

ps:令我感到奇怪的是,当我在写这篇总结时,尝试通过移除spring-instrument依赖来复现上述的问题时,发现复现不了了,好神奇。

以上是关于Spring5源码解析-前奏:本地构建Spring5源码的主要内容,如果未能解决你的问题,请参考以下文章

深度解析Spring源码编译Spring源码(spring5.2.x版本)

2021了,我才学会构建Spring源码

Spring 5.3.x源码构建

Spring5IOC源码解析

Spring5IOC源码解析

Spring5IOC源码解析