1. 程式人生 > >springboot例項化Environment的方法

springboot例項化Environment的方法

Environment介面是spring核心庫中的一個介面,不能直接通過new關鍵字例項化

1.使用@Autowired自動注入

@Autowired
private Environment environment;

2.藉助SpringContextUtil類,通過反射例項化

private  Environment environment =(Environment) SpringContextUtil.getBean(Environment.class);