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

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

Properties 配置文件参数 注入bean中

發(fā)布時(shí)間:2025/4/5 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。