Spring MVC 經過@Value註解讀取.properties配置內容

第一步:spring

在applicationContext.xml配置:app

<bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean">
        <property name="locations">
            <list>
                <value>classpath:/config/*.properties</value>
            </list>
        </property>
    </bean>
    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
        <property name="properties" ref="configProperties" />
    </bean>

第二步:spa

創建配置文件內容:code

例如:userPageSize=5xml

第三步:字符串

在Controller中使用註解得到配置項內容:io

@Value("#{configProperties['userPageSize']}")
private String userPageSize;

第四步:class

後面的代碼就可使用userPageSize這個私有變量了,這個字符串的值就是咱們配置文件中配置的5.變量

相關文章
相關標籤/搜索