本文共 1050 字,大约阅读时间需要 3 分钟。
Environment是一种在Spring容器内已配置(Profile)和属性(Properties)为模型的应用环境抽象整合。
Spring Framewwork提供了两种Enviroment的实现,即
在Spring容器,Profile是一种命名的Bean定义逻辑组。一个Spring应用可以同时激活多个Profile,常见的使用场景如:应用部署环境(test、stage、production)、单元测试等。
应用程序可通过调用ConfigurableEnvironment接口控制Profile的激活,如:属性又称之为配置项,Key-Value的形式。在Spring应用中常用作占位符(Placeholder),而在API层面,Spring Framework如下抽象来表述:
事件(Event)
ApplicationEvent事件监听器(EventListener)ApplicationListener在Spring Boot场景中,用于读取默认以及Profile关联的配置文件(application.properties)
application.properties或application.xml
加载器:PropertiesPropertySourceLoaderapplication.yml或者application.yaml加载器:YamlPropertySourceLoader请求URL:/env
数据来源:EnvironmentEndpointController来源:EnvironmentMvcEndpoint转载地址:http://waino.baihongyu.com/