spring 动态获取配置spring获取所有配置spring运行中获取配置列表

1:在任何spring bean中注入PropertySourcesPlaceholderConfigurer对象,如:

@Autowired
PropertySourcesPlaceholderConfigurer aa;

 

2:获取当前配置中的值

Object getProperty(){
    return aa.getAppliedPropertySources().get("localProperties").getProperty("controllerPath");
}

 

posted @ 2022-12-04 22:56  yzeng  阅读(108)  评论(0编辑  收藏  举报