Spring5源码分析之IOC-基本使用-1

Spring5已经出来了,出于好奇心,想看看Spring5的源码到底怎么样,因为最低兼容JDK8,所以肯定是用了lambda和Stream的东西,想看看Spring4当中冗杂的代码是否得到了精简。先从一个简单的Spring的IOC例子开始。

为了更好的分析Spring5的源码,我决定使用xml配置,因为xml配置对于bean的关系很明显:

Java代码如下:

@Test
    public void jdkSelfClass(){
        ApplicationContext context = new ClassPathXmlApplicationContext("./spring.xml");
        SimpleDateFormat dateFormat = context.getBean(SimpleDateFormat.class);
        logger.info("DateFormat:{}",dateFormat);
    }

XML配置如下:



    
    

你可能感兴趣的:(Spring5源码分析之IOC-基本使用-1)