d簧属性注入不起作用@Value和

d簧属性注入不起作用@Value和,第1张

概述我在使用Spring的类中注入属性时遇到问题.我的applicationContext.xml包含以下内容:<context:annotation-config /> <context:component-scan base-package='life' /> <util:properties id='config' locat

我在使用Spring的类中注入属性时遇到问题.
我的applicationContext.xml包含以下内容:

<context:annotation-config /><context:component-scan base-package="life" /><util:propertIEs ID="config" location="classpath:config/files/config.propertIEs"/>

例如,我想在config.propertIEs文件中获取一个布尔值:

package life.util;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Componentpublic class lifePath {    private @Value("#{config.production_mode}")static boolean prodMode;

我没有错误,但是没有用.
如果有人有帮助我的想法,那就太好了.

约翰

最佳答案可能是因为prodMode是静态的.我认为Spring不会对此进行任何关注,它只会连接实例字段. 总结

以上是内存溢出为你收集整理的d簧属性注入不起作用@Value和 全部内容,希望文章能够帮你解决d簧属性注入不起作用@Value和 所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

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

原文地址: http://outofmemory.cn/langs/1233908.html

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

发表评论

登录后才能评论

评论列表(0条)

保存