Spring会把xml文件封装成Resource对象,然后对其进行Dom解析,
xml里面的标签元素 <bean> <componentScan> 封装成 beanDefinition对象
同理 annotation 标签所标注的元素 @Service @Controller @Component @Resource 也被封装成beanDefinition对象
具体实现是通过xml配置文件的context找uri,spring.handlers里有uri对应的处理类
Spring会把xml文件封装成Resource对象,然后对其进行Dom解析,
xml里面的标签元素 <bean> <componentScan> 封装成 beanDefinition对象
同理 annotation 标签所标注的元素 @Service @Controller @Component @Resource 也被封装成beanDefinition对象
具体实现是通过xml配置文件的context找uri,spring.handlers里有uri对应的处理类