Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JavaStudyStudio/spring-analysis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ba03d7c
Choose a base ref
...
head repository: seaswalker/spring-analysis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4379cce
Choose a head ref
  • 12 commits
  • 4 files changed
  • 5 contributors

Commits on Nov 13, 2019

  1. Bump jackson-databind from 2.9.8 to 2.9.10.1

    Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.8 to 2.9.10.1.
    - [Release notes](https://github.com/FasterXML/jackson/releases)
    - [Commits](https://github.com/FasterXML/jackson/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Nov 13, 2019
    Configuration menu
    Copy the full SHA
    bb36b4d View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2020

  1. Configuration menu
    Copy the full SHA
    2614b08 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2020

  1. Merge pull request seaswalker#10 from seaswalker/dependabot/maven/org…

    ….hibernate.validator-hibernate-validator-6.1.0.Final
    
    Bump hibernate-validator from 6.0.2.Final to 6.1.0.Final
    seaswalker authored Jan 16, 2020
    Configuration menu
    Copy the full SHA
    e4bb943 View commit details
    Browse the repository at this point in the history
  2. Merge pull request seaswalker#8 from seaswalker/dependabot/maven/com.…

    …fasterxml.jackson.core-jackson-databind-2.9.10.1
    
    Bump jackson-databind from 2.9.8 to 2.9.10.1
    seaswalker authored Jan 16, 2020
    Configuration menu
    Copy the full SHA
    032e174 View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2020

  1. 纠正postProcessMergedBeanDefinition方法的执行时机的描述

    纠正MergedBeanDefinitionPostProcessor.postProcessMergedBeanDefinition方法的执行时机的描述
    ```java
    protected Object doCreateBean(final String beanName, final RootBeanDefinition mbd, final Object[] args) {
        // Instantiate the bean.
        BeanWrapper instanceWrapper = null;
        if (mbd.isSingleton()) {
            instanceWrapper = this.factoryBeanInstanceCache.remove(beanName);
        }
        if (instanceWrapper == null) {
    
            //createBeanInstance方法已经创建了实例
            instanceWrapper = createBeanInstance(beanName, mbd, args);
        }
        final Object bean = (instanceWrapper != null ? instanceWrapper.getWrappedInstance() : null);
        Class<?> beanType = (instanceWrapper != null ? instanceWrapper.getWrappedClass() : null);
        // Allow post-processors to modify the merged bean definition.
        synchronized (mbd.postProcessingLock) {
            if (!mbd.postProcessed) {
                applyMergedBeanDefinitionPostProcessors(mbd, beanType, beanName);
                mbd.postProcessed = true;
            }
        }
    }	
    ```
    代码中createBeanInstance方法已经创建了实例
    Rocky authored Feb 13, 2020
    Configuration menu
    Copy the full SHA
    a41e7b0 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2020

  1. Bump jackson-databind from 2.9.10.1 to 2.10.0.pr1

    Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.9.10.1 to 2.10.0.pr1.
    - [Release notes](https://github.com/FasterXML/jackson/releases)
    - [Commits](https://github.com/FasterXML/jackson/commits)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jun 18, 2020
    Configuration menu
    Copy the full SHA
    578992b View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2020

  1. Merge pull request seaswalker#18 from seaswalker/dependabot/maven/com…

    ….fasterxml.jackson.core-jackson-databind-2.10.0.pr1
    
    Bump jackson-databind from 2.9.10.1 to 2.10.0.pr1
    seaswalker authored Jun 21, 2020
    Configuration menu
    Copy the full SHA
    bc3785d View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. Merge pull request seaswalker#13 from rocky-peng/patch-1

    纠正postProcessMergedBeanDefinition方法的执行时机的描述
    seaswalker authored Jun 23, 2020
    Configuration menu
    Copy the full SHA
    f612865 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2021

  1. Update spring-boot.md

    iiuhuy authored Feb 23, 2021
    Configuration menu
    Copy the full SHA
    214462c View commit details
    Browse the repository at this point in the history
  2. Merge pull request seaswalker#22 from iiuhuy/patch-1

    Update spring-boot.md
    seaswalker authored Feb 23, 2021
    Configuration menu
    Copy the full SHA
    1fab1b3 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2023

  1. 修复少数md格式

    Carpe-Wang committed Mar 23, 2023
    Configuration menu
    Copy the full SHA
    d1ae25d View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2023

  1. Merge pull request seaswalker#37 from Carpe-Wang/master

    修复少数md格式
    seaswalker authored Mar 24, 2023
    Configuration menu
    Copy the full SHA
    4379cce View commit details
    Browse the repository at this point in the history
Loading