码迷,mamicode.com
首页 > 编程语言 > 详细

spring 通过@Value 获取properties文件中设置了属性 ,与@Value # 和$的区别

时间:2018-01-31 14:52:58      阅读:1475      评论:0      收藏:0      [点我收藏+]

标签:属性   xhtml   round   监听器   comm   比较   string   log   list   

 

spring 获取 properties的值方法

在spring.xml中配置

很奇怪的是,在context-param 加载的spring.xml 不能使用 ${xxx}

必须交给DispatcherServlet 管理的 springMVC.xml才能用?

要交给springMVC的DispatcherServlet去扫描,而不是spring的监听器ContextLoaderListener去扫描,就可以比较方便的使用“${xxx}”去注入。

1、使用 $ 获取属性

@Value("${user.name}")

private String userName;

<!--方法1-->
 <context:property-placeholder location="classpath*:info/info.properties" />
<!--方法2-->
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
    <property name="order" value="1" />
    <property name="locations">
        <list>
            <value>classpath:info/info.properties</value>
        </list>
    </property>
</bean>

 

2、使用 #获取属性

@Value("#{user.name}")

private String userName;

<bean id="prop" class="org.springframework.beans.factory.config.PropertiesFactoryBean"> 
        <property name="locations"> 
            <array> 
                <value>classpath:configure.properties</value> 
            </array> 
        </property> 
</bean>

 

 

spring 通过@Value 获取properties文件中设置了属性 ,与@Value # 和$的区别

标签:属性   xhtml   round   监听器   comm   比较   string   log   list   

原文地址:https://www.cnblogs.com/lemon-flm/p/8391239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!