springboot实例化Environment的方法

Posted 吴川华仔博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot实例化Environment的方法相关的知识,希望对你有一定的参考价值。

Environment接口是spring核心库中的一个接口,不能直接通过new关键字实例化

  1. 使用@Autowired自动注入
@Autowired
private Environment environment;
  1. 借助SpringContextUtil类,通过反射实例化
private  Environment environment =(Environment) SpringContextUtil.getBean(Environment.class);

以上是关于springboot实例化Environment的方法的主要内容,如果未能解决你的问题,请参考以下文章

springboot中依赖对象实例化问题

springboot中中Conditional相关注解

在测试中实例化多个 Spring Boot 应用程序

springboot启动流程Environment简介

SpringBoot如何读取配置文件(@Value/@ConfigurationProperties/Environment)

Spring boot @SpyBean 尝试实例化一个新的 bean,而不是在上下文中监视它