如题所示,有时候我们的一些配置并不能在代码中“写死”,而是需要动态配置在配置文件中。这样可以使得以后需要修改该参数时只需要修改配置文件中的参数值即可,而不需要修改代码。具体配置如下:

(1)在Spring的配置文件中添加以下配置用于引入参数所在的文件:

<beanid="configProperties"class="org.springframework.beans.factory.config.PropertiesFactoryBean"><propertyname="locations"><list><value>classpath:jdbc.properties</value><value>classpath:article.properties</value></list></property></bean><beanid="propertyConfigurer"class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"><propertyname="properties"ref="configProperties"/></bean>

注:如果想在Controller中也使用@Value注解引入配置文件中的参数的话,那么需要将上面的“propertyConfigurer”这个bean在SpringMVC的配置文件中也重复复制一遍,也就是:

<beanid="propertyConfigurer"class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"><propertyname="properties"ref="configProperties"/></bean>

(2)article.properties文件的具体内容如下:

test.author=zifangsky

(3)测试:

packagecn.zifangsky.controller;importorg.springframework.beans.factory.annotation.Value;importorg.springframework.stereotype.Controller;importorg.springframework.web.bind.annotation.RequestMapping;@ControllerpublicclassTestController{@Value("#{configProperties['test.author']}")privateStringauthor;@RequestMapping("/test.html")publicvoidtest(){System.out.println("---------------");System.out.println("测试:"+author);}}

可以看出,这里使用了@Value注解,其语法如下:

@Value(“#{configProperties[‘参数名’]}”)

当然,还有一种简写的语法是:

@Value(“${参数名}”)

也就是说上面加载参数那里也可以这样使用:

@Value("${test.author}")privateStringauthor;

(4)最后输出如下:

---------------测试:zifangsky