Properties 配置文件参数 注入bean中
生活随笔
收集整理的這篇文章主要介紹了
Properties 配置文件参数 注入bean中
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
2019獨角獸企業重金招聘Python工程師標準>>>
需求敘述: Properties 配置文件參數的獲取,之前日志中有提到獲取項目配置文件地址,讀取properties獲取參數。現在需要將config.properties文件的參數注入到BaseController類,以便所有繼承的子類都可以獲取使用。
1.配置文件的加載
a.
<!-- 使用spring提供的PropertyPlaceholderConfigurer讀取數據庫配置信息.properties --><bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><!—這里的classpath可以認為是項目中的src-屬性名是 locations,使用子標簽<list></list>可以指定多個數據庫的配置文件,這里指定了一個 -><value>classpath:resource/config/jdbc.properties</value></list></property></bean>此時的數據庫配置文件項目路徑是這樣的
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>此時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里面的信息讀進來 對象中(可自定義): 如String: ``` <bean id="fileUrl" class="java.lang.String"> <constructor-arg value="${fileUrl}"/> </bean>
3.BaseController父類@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">生成報表</a>轉載于:https://my.oschina.net/maoguangdong/blog/775943
總結
以上是生活随笔為你收集整理的Properties 配置文件参数 注入bean中的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java代码的基本格式及注释
- 下一篇: Node.js 切近实战(八) 之Exc