我有一个用@ConfigurationProperties 注释的类。@ConfigurationProperties@Configuration@DependsOn("AddDefaultProfile")public class MyProperties(){ ....}我有几个配置文件chrome, safari, ie, and en_US, fr_CA等等。我的运行参数看起来像-Dspring.profiles.active=chrome, en_US.现在我想检查是否指定了语言,如果没有,我使用environment.addActiveProfile("en_US"). 问题是我的 MyProperties 没有重新加载。通过调试,我可以看到环境在活动配置文件中具有 en_US,但 propertySource 仍然具有旧配置文件。如何使用我的新配置文件重新加载 MyProperties。
2 回答
隔江千里
TA贡献1906条经验 获得超10个赞
您可以尝试调用此方法WebApplicationContextUtils#initServletPropertySources(org.springframework.core.env.MutablePropertySources, javax.servlet.ServletContext, javax.servlet.ServletConfig)
,但我不确定这是否有用
添加回答
举报
0/150
提交
取消