Properties 配置文件参数 注入bean中
生活随笔
收集整理的這篇文章主要介紹了
Properties 配置文件参数 注入bean中
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>
需求敘述: Properties 配置文件參數(shù)的獲取,之前日志中有提到獲取項(xiàng)目配置文件地址,讀取properties獲取參數(shù)。現(xiàn)在需要將config.properties文件的參數(shù)注入到BaseController類(lèi),以便所有繼承的子類(lèi)都可以獲取使用。
1.配置文件的加載
a.
<!-- 使用spring提供的PropertyPlaceholderConfigurer讀取數(shù)據(jù)庫(kù)配置信息.properties --><bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><!—這里的classpath可以認(rèn)為是項(xiàng)目中的src-屬性名是 locations,使用子標(biāo)簽<list></list>可以指定多個(gè)數(shù)據(jù)庫(kù)的配置文件,這里指定了一個(gè) -><value>classpath:resource/config/jdbc.properties</value></list></property></bean>此時(shí)的數(shù)據(jù)庫(kù)配置文件項(xiàng)目路徑是這樣的
b.
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><value>/WEB-INF/config_test/jdbc.properties</value></list></property></bean>此時(shí)jdbc.properties文件的位置如下圖所示
c.
或者放一起:
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><value>classpath:jdbc.properties</value><value>/WEB-INF/config_test/jdbc.properties</value></list></property></bean>2.properties里面的信息讀進(jìn)來(lái) 對(duì)象中(可自定義): 如String: ``` <bean id="fileUrl" class="java.lang.String"> <constructor-arg value="${fileUrl}"/> </bean>
3.BaseController父類(lèi)@Autowired//注入 private String fileUrl;
public String getFileUrl() {return fileUrl; }public void setFileUrl(String fileUrl) {this.fileUrl = fileUrl; } 前端使用: <a onclick="javascript:window.open('${fileUrl}')" type="button" class="btn btn-success btn-sm">生成報(bào)表</a>轉(zhuǎn)載于:https://my.oschina.net/maoguangdong/blog/775943
總結(jié)
以上是生活随笔為你收集整理的Properties 配置文件参数 注入bean中的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Java代码的基本格式及注释
- 下一篇: Node.js 切近实战(八) 之Exc