美文网首页
spring源码编译

spring源码编译

作者: iGroove | 来源:发表于2020-06-22 18:02 被阅读0次

spring版本:v5.2.6.RELEASE

1. 克隆spring源码

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

2. 切换版本至v5.2.6.RELEASE

进入spring-framework下执行
git checkout -b v5.2.6.RELEASE v5.2.6.RELEASE

3. 配置gradle全局下载仓库,为了国内加速下载依赖

对所有项目生效,在~/.gradle/下创建init.gradle文件,填入以下内容

allprojects {
    repositories {
        def ALIYUN_REPOSITORY_URL = 'http://maven.aliyun.com/nexus/content/groups/public'
        def ALIYUN_JCENTER_URL = 'http://maven.aliyun.com/nexus/content/repositories/jcenter'
        all {
            ArtifactRepository repo ->
                if (repo instanceof MavenArtifactRepository) {
                    def url = repo.url.toString()
                    if (url.startsWith('https://repo1.maven.org/maven2')) {
                        project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_REPOSITORY_URL."
                        remove repo
                    }
                    if (url.startsWith('https://jcenter.bintray.com/')) {
                        project.logger.lifecycle "Repository ${repo.url} replaced by $ALIYUN_JCENTER_URL."
                        remove repo
                    }
                }
        }
        maven {
            url ALIYUN_REPOSITORY_URL
            url ALIYUN_JCENTER_URL
        }
    }
}

4. 执行./gradlew :spring-oxm:compileTestJava,效果如下

效果图

若gradle无法下载可手动下载,放置gradle/wrapper下,然后修改distributionUrl。如图

image

5. Idea导入

Import Project -> 勾选Gradle -> Finshed

6. 构建自己的Demo工程

6.1 新建工程
image
6.2 引入依赖

在build.gradle中加入

dependencies {
    compile(project(":spring-context"))
    testCompile group: 'junit', name: 'junit', version: '4.12'
}
6.3 编写代码

UserService.class

### interface
public interface UserService {
    void sayHello();
}

UserServiceImpl.class

### impl
public class UserServiceImpl implements UserService {
    @Override
    public void sayHello() {
        System.out.println("Hello spring framework.");
    }
}

SpringApplication.class

public class SpringApplication {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext();
        applicationContext.register(UserServiceImpl.class);
        applicationContext.refresh();
        UserService userService = applicationContext.getBean(UserService.class);
        userService.sayHello();
    }
}
6.4 最终效果
image

相关文章

  • 002-【Spring】源码编译

    Spring源码编译 1、理解编译过程 1)Spring源码依赖gradle进行编译 2)不同版本的Spring依...

  • 探秘 Spring 的 PropertyEditor

    Spring 源码系列Spring 整体架构编译Spring5.2.0源码Spring-AliasRegistry...

  • Spring源码编译

    Spring源码编译调试 学习Spring源码首先要本地下载源码后编译通过才能调试Spring,本文章主要介绍Sp...

  • 狂撸Spring源码(一),剑指高级架构

    一、Spring源码下载编译 学习Spring源码之前,首先我们需要到GITHUB上下载Spring源码:imag...

  • 编译Spring

    编译Spring 为了深入了解Spring-Framework,阅读项目源码,第一步是编译源码。 代码地址如下 h...

  • Spring FactoryBean 缓存

    相关文章 Spring 整体架构 编译Spring5.2.0源码 Spring-资源加载 Spring 容器的初始...

  • gradle编译spring3.2源码

    最近在看spring源码深度解释这本书,书上需要下载和自己手动编译源码,在此记录一下自己的流程。编译spring源...

  • spring源码编译

    编译spring5.x版本的源码1.下载spring源码打开同性交友网站搜索spring-framework选择分...

  • spring 5.3.2 源码编译

    jdk.jfr , CoroutinesUtils jdk下载 编译前准备 源码下载 Spring 源码下载可以去...

  • spring源码阅读-环境搭建【01】

    《spring-framework源码阅读001》 源码下载编译步骤 一、下载源码 github下载速度慢,需要v...

网友评论

      本文标题:spring源码编译

      本文链接:https://www.haomeiwen.com/subject/nmrffktx.html