我在使用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和 所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)