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

前端之家收集整理的这篇文章主要介绍了弹簧属性注入不起作用@Value和 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在使用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;

@Component
public class LifePath {

    private @Value("#{config.production_mode}")static boolean prodMode;

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

约翰

最佳答案
可能是因为prodMode是静态的.我认为Spring不会对此进行任何关注,它只会连接实例字段.
原文链接:https://www.f2er.com/spring/531705.html

猜你在找的Spring相关文章