当前位置: 首页 > article >正文

到了这个年纪,就应该阅读Spring源码了,源码阅读指南-编译加运行

文章目录

  • 到了那个年纪,就应该阅读Spring源码了
    • 😄第一步,clone
    • 😆第二步,使用idea打开项目
      • 😊gradle介绍(插叙手法)
    • 😃第三步,修改gradle的远程仓库地址
      • 😏这里遇到了很多的坑(插叙手法)
    • 😍第四步,安装依赖
      • 😘脚本介绍(插叙手法)
    • 😚第五步,编译spring项目
    • 😳附赠内容(买一送一)
      • 😌在spring源码项目中新建项目验证我们的spring源码

到了那个年纪,就应该阅读Spring源码了

Spring的源码地址

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

😄第一步,clone

我们先把他clone下来

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

没梯子的话多clone几遍就好了

😆第二步,使用idea打开项目

在这里插入图片描述

我们这里使用5.x的版本

在这里插入图片描述

设置里面gradle设置按照如下图设置即可

在这里插入图片描述

😊gradle介绍(插叙手法)

由于Spring源码都是使用Gradle来管理项目

按理来说我们gradle和maven类似,需要在本级载好并且安装好

但是不建议这么做,因为很多项目的源代码都自带了wrapper包

在这里插入图片描述

这里面有我们的gradle的包,这样有利于我们统一得管理版本冲突问题

Gradle Wrapper 实际上就是对 Gradle 的一层包装,用于解决实际开发中可能会遇到的不同的项目需要不同版本的 Gradle 问题。
例如:把自己的代码共享给其他人使用,
可能出现如下情况:
1.对方电脑没有安装 gradle
2.对方电脑安装过 gradle,但是版本太旧了
这时候,我们就可以考虑使用 Gradle Wrapper 了。这也是官方建议使用 Gradle Wrapper 的原因。

😃第三步,修改gradle的远程仓库地址

spring的gradle的远程仓库是spring自己的远程仓库,但是我们是拉不下来jar包的,原因是最新的spring仓库添加了认证

我们拉包的时候会出现

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'spring'.
> Could not resolve all files for configuration ':classpath'.
   > Could not resolve org.apache.xerces:xercesImpl:2.9.1.
     Required by:
         project : > io.spring.gradle:docbook-reference-plugin:0.3.1
      > Could not resolve org.apache.xerces:xercesImpl:2.9.1.
         > Could not get resource 'https://repo.spring.io/plugins-release/org/apache/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom'.
            > Could not GET 'https://repo.spring.io/plugins-release/org/apache/xerces/xercesImpl/2.9.1/xercesImpl-2.9.1.pom'. Received status code 401 from server: Unauthorized
   > Could not resolve org.apache.xerces:resolver:2.9.1.
     Required by:
         project : > io.spring.gradle:docbook-reference-plugin:0.3.1
      > Could not resolve org.apache.xerces:resolver:2.9.1.
         > Could not get resource 'https://repo.spring.io/plugins-release/org/apache/xerces/resolver/2.9.1/resolver-2.9.1.pom'.
            > Could not GET 'https://repo.spring.io/plugins-release/org/apache/xerces/resolver/2.9.1/resolver-2.9.1.pom'. Received status code 401 from server: Unauthorized

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.


Received status code 401 from server: Unauthorized 无权限

在这里插入图片描述

所以我们需要改成阿里云的仓库地址

😏这里遇到了很多的坑(插叙手法)

在网上有很多的解决方法,解决方法无非就是

在这里插入图片描述

添加

https://maven.aliyun.com/repository/public

但是,其实我们上面的错误,并不是添加这个仓库就解决了

我们去看官网地址
https://developer.aliyun.com/mvn/guide

在这里插入图片描述

添加的仓库就是箭头所指的仓库,但是我们搜索一下这个jar包

在这里插入图片描述

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

public仓库其实是没有这个jar包的,所以找个寂寞。。。

我们要去spring-plugin仓库中去拉

在这里插入图片描述

打开build.gradle文件

在这里插入图片描述

找到configure(allprojects)

在这里插入图片描述

方法里面的repositories

在这里插入图片描述

添加阿里云的地址

		maven {
			url 'https://maven.aliyun.com/repository/spring-plugin'
		}
		maven {
			url 'https://maven.aliyun.com/repository/public/'
		}

😍第四步,安装依赖

😘脚本介绍(插叙手法)

在这里插入图片描述

gradlew与gradlew.bat执行的指定wrapper版本中的gradle指令,不是本地安装的gradle指令
gradlew:linux下的脚本
gradlew.bat: Windows下的脚本

 ./gradlew.bat dependencies

在这里插入图片描述

第一次可能较慢,出现build successful就说明安装完成

在这里插入图片描述

这个时候我们重新加载gradle项目即可

在这里插入图片描述

😚第五步,编译spring项目

我们clean一下

在这里插入图片描述

然后

 ./gradlew.bat :spring-oxm:compileTestJava

在这里插入图片描述

编译成功后在各个模块有编译好的build文件夹

在这里插入图片描述

lib文件夹里面就是我们打好的jar包

在这里插入图片描述

这样就说明我们的源码环境已经完全配置好了

😳附赠内容(买一送一)

😌在spring源码项目中新建项目验证我们的spring源码

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

把src文件夹复制到spring-demo项目中(新建的项目如果为空的话,复制项目文件夹结构)

在这里插入图片描述

删掉多余的,自己新建文件包

在这里插入图片描述

添加 compile(project(":spring-context"))
意思是添加依赖spring-context

在这里插入图片描述

package com.masiyi;

import org.springframework.stereotype.Service;

/**
 * @Description TODO
 * @Author masiyi
 * @Date 2023/1/5
 **/
@Service
public class DemoService {
	public void hello() {
		System.out.println("hello spring");
	}
}


package com.masiyi;

import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Configuration;

/**
 * @Description TODO
 * @Author masiyi
 * @Date 2023/1/5
 **/
public class DemoStart {
	public static void main(String[] args) {
		ApplicationContext ac = new AnnotationConfigApplicationContext("com.masiyi");
		DemoService bean = ac.getBean(DemoService.class);
		bean.hello();
	}
}

运行即可

在这里插入图片描述


http://www.kler.cn/a/3697.html

相关文章:

  • 【Python项目】小区监控图像拼接系统
  • 探索 SolidJS:一款高速的前端框架
  • 【ESP32】ESP32连接JY61P并通过WIFI发送给电脑
  • Bash语言的函数实现
  • 第12章:Python TDD完善货币加法运算(一)
  • WGAN - 瓦萨斯坦生成对抗网络
  • 如果大学能重来,我绝对能吊打90%的大学生,早知道这方法就好了
  • 【蓝桥杯_练习】
  • STA:时序检查 - reg2output型
  • Java语言-----封装、继承、抽象、多态、接口
  • Idea+maven+spring-cloud项目搭建系列--11 整合dubbo
  • 肠道菌群对药物,重金属,污染物,膳食化合物的代谢和健康效应
  • antd+vue——table组件字段排序——对象数组排序 中文排序——基础积累
  • 100天精通Python(可视化篇)——第81天:matplotlib绘制不同种类炫酷饼图参数说明+代码实战(自定义、百分比、多个子图、圆环、嵌套饼图)
  • C++语法(11)---- 模拟实现list
  • Python list列表删除元素的4种方法
  • 面试官:如何保证接口幂等性?一口气说了9种方法!
  • 史诗级详解面试中JVM的实战
  • C++智能指针
  • Python | 蓝桥杯系列文章总结+经典例题重做
  • SpringBoot 将PDF转成图片或World
  • 五、MyBatis各种查询功能
  • 怎么设计一个秒杀系统
  • 云原生领域下的开发平台
  • 【数据结构】树和二叉树的介绍
  • 基于 Docker 的深度学习环境:入门篇