日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Properties 配置文件参数 注入bean中

發布時間:2025/4/5 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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中的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。