Spring--Spring配置元信息

Posted jazon@

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring--Spring配置元信息相关的知识,希望对你有一定的参考价值。

Spring Bean配置元信息

  • Bean配置元信息-BeanDefinition : 1. GenericBeanDefinition:通用型BeanDefinition。2.RootBeanDefinition: 无Parent的BeanDefinition或者合并后BeanDefinition。3.AnnotatedBeanDefinition: 注解标注的BeanDefinition。

Sping Bean属性元信息

  • Bean属性元信息-PropertyValues,这个就是影响bean属性的。
  • Bean属性上下文存储-beanDefinition.addAttribute(“name”, “11”),这个只是个beandefinition加了个属性,不会影响最后bean的属性。
  • bean元信息元素-beanDefinition.setSource(“source1”),同样这个也只是beanDefinition的source属性,不会影响bean最后生成。

Spring容器配置元信息

基于注解装载SpringBean配置元信息

SpringBean配置元信息底层实现–Java注解方式

基于Java注解装载Spring IoC容器配置元信息


基于Properties资源装载外部化配置


需要注意的是,PropertySource是属性来源的意思,它可以有多个来源,比如System Properties,System Environment,Rsource properties(.properties配置文件),他们是有优先级顺序的。context.getEnvironment().getPropertySources();可以看到spirng容器里有多少个propertySource,以及优先级顺序,排在前面的优先级更高。于是,我们通过上面截图里Api编程的PropertySource构造属性源,加入到spring容器中。

基于YAML资源装载外部化配置


YamlMapFactoryBean将YAML文件读取为Map,YamlPropertiesFactoryBean将YAML文件读取为Properties。 @PropertySource 支持自定义PropertySourceFactory(只需要实现PropertySourceFactory接口),使得YAML文件也能作为Property Source。

以上是关于Spring--Spring配置元信息的主要内容,如果未能解决你的问题,请参考以下文章

Spring:使用 Spring Security 为执行器端点配置安全性

Spring/Spring Boot的外部化配置

最新最全面的Spring详解——Spring概述与IOC容器

spring集成mybatis

是否有适用于 JPA、spring-data、spring-data-rest 的通用 REST 查询语言

Spring Cloud 之配置中心