3.Spring源码编译

3.Spring源码编译

0.环境准备

本示例基于 SpringV5.2.0RELEASE+GradleWapper+jdk1.8.0_131编译

1)安装JDK1.8

2)安装IDEA

3)源码下载

  • 进入https://github.com/spring-projects/spring-framework Spring 官方的源码git地址下载。

  • 注意:不要去下branches 那个下面的,去tags 列下找最近的正式版分支。

3.Spring源码编译_第1张图片

版本介绍
3.Spring源码编译_第2张图片

M1,M2,…中的M是milestone的简写,意思是里程碑,代表着有重大改进的版本。学习源码最好下载正式版本代码。

1.构建工具准备

1)gradle可以不安装

2)也可以自己安装,注意如下事项:

gadle开源项目解压开,找到gradle\wrapper\gradle-wrapper.properties这个文件,内容如下

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

里面有gradle的版本要求,现在相应的版本就行。

gradle简单介绍

Gradle是个构建系统,能够简化你的编译、打包、测试过程。熟悉Java的同学,可以把Gradle类比成Maven。

Gradle Wrapper的作用是简化Gradle本身的安装、部署。不同版本的项目可能需要不同版本的Gradle,手工部署的话比较麻烦,而且可能产生冲突,所以需要Gradle Wrapper帮你搞定这些事情。Gradle Wrapper是Gradle项目的一部分。

2.修改gradle镜像地址

找到解压后的Spring项目中的build.gradle文件,修改如下

原始镜像为:

repositories {
            mavenCentral()
            maven { url "https://repo.spring.io/libs-spring-framework-build" }
        }

修改为:

repositories {
            maven{ url 'https://maven.aliyun.com/nexus/content/groups/public/'}
            maven{ url 'https://maven.aliyun.com/nexus/content/repositories/jcenter'}
            mavenCentral()
            maven { url "https://repo.spring.io/libs-spring-framework-build" }
        }

3.编译compileTestJava模块

1)使用gradle-wapper命令 编译:Precompile spring-oxm with ./gradlew :spring-oxm:compileTestJava

  1. 用windows的cmd 命令编译:进入spring-framework-5.2.0.RELEASE文件夹,在窗口的地址栏中输入cmd
    打开cmd窗口,输入 gradlew :spring-oxm:compileTestJava 命令等待几分钟,快的3分钟左右,慢的10几分钟,取决于网络问题。

4.导入项目编译:

导入项目时gradle配置如下:

3.Spring源码编译_第3张图片

导入后编译,需要等待很久我的等待3个小时左右。

3.Spring源码编译_第4张图片

如果编译失败,可以重新编译,出现问题尽量百度吧。

5.验证编译是够成功

new->model->gradle–>输入模块名称

3.Spring源码编译_第5张图片

点击next,输入ArtifactId,在点击next,在点击finish,结束。

3.Spring源码编译_第6张图片

5.1 添加 spring-context 依赖
dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile(project(":spring-context"))
}
5.2添加任意Bean:
package myf;

import org.springframework.stereotype.Service;

@Service
public class HelloSpring {
	public void sayHi(){
		System.out.println("Hello Spring ");
	}
}
5.3 添加启动配置类
import myf.HelloSpring;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;

@Configuration
@ComponentScan("myf")
public class AppManiStart {
	public static void main(String[] args) {
		ApplicationContext context = new AnnotationConfigApplicationContext(AppManiStart.class);
		HelloSpring helloSpring = context.getBean(HelloSpring.class);
		helloSpring.sayHi();
	}
}

你可能感兴趣的:(Spring架构源码,spring,gradle)