spring 动态获取配置spring获取所有配置spring运行中获取配置列表
1:在任何spring bean中注入PropertySourcesPlaceholderConfigurer对象,如:
@Autowired
PropertySourcesPlaceholderConfigurer aa;
2:获取当前配置中的值
Object getProperty(){ return aa.getAppliedPropertySources().get("localProperties").getProperty("controllerPath"); }
致读者:感谢你阅读本文,请随手点击右下角的推荐或分享,谢谢!