Spring控制器:如何在@RequestMapping中使用属性$ {..}?

Spring控制器:如何在@RequestMapping中使用属性$ {..}?,第1张

Spring控制器:如何在@RequestMapping中使用属性$ {..}?

有可能

PropertySourcesPlaceholderConfigurer
在d簧上下文中比控制器晚初始化,因此无法解析这些值。尝试
PropertySourcesPlaceholderConfigurer
在以下一个根配置文件中添加显式Bean定义;

@PropertySource("classpath:/dmConfig.properties")public class DmWebConfigurer extends WebMvcConfigurerAdapter{    @Override    public void addResourceHandlers(ResourceHandlerRegistry registry)    {        super.addResourceHandlers(registry);        registry.addResourceHandler("/index.html").addResourceLocations("/");        registry.setOrder(Integer.MAX_VALUE-5);    }    @Bean    public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {        return new PropertySourcesPlaceholderConfigurer();    }}

之所以可以在

init()
方法中正确看到这些值,是因为在初始化所有的bean(包括)之后调用了它
PropertySourcesPlaceholderConfigurer



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4943792.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-13
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存