springboot实例化Environment的方法
Posted 吴川华仔博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot实例化Environment的方法相关的知识,希望对你有一定的参考价值。
Environment接口是spring核心库中的一个接口,不能直接通过new关键字实例化
- 使用@Autowired自动注入
@Autowired
private Environment environment;
- 借助SpringContextUtil类,通过反射实例化
private Environment environment =(Environment) SpringContextUtil.getBean(Environment.class);
以上是关于springboot实例化Environment的方法的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot如何读取配置文件(@Value/@ConfigurationProperties/Environment)