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配置如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="dataFormat" class="java.text.SimpleDateFormat">
</bean>
</beans>
网友评论