日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

Properties 配置文件参数 注入bean中

發(fā)布時間:2025/4/5 37 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Properties 配置文件参数 注入bean中 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

2019獨角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>

需求敘述: Properties 配置文件參數(shù)的獲取,之前日志中有提到獲取項目配置文件地址,讀取properties獲取參數(shù)。現(xiàn)在需要將config.properties文件的參數(shù)注入到BaseController類,以便所有繼承的子類都可以獲取使用。

1.配置文件的加載

a.

<!-- 使用spring提供的PropertyPlaceholderConfigurer讀取數(shù)據(jù)庫配置信息.properties --><bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"><property name="locations"><list><!—這里的classpath可以認(rèn)為是項目中的src-屬性名是 locations,使用子標(biāo)簽<list></list>可以指定多個數(shù)據(jù)庫的配置文件,這里指定了一個 -><value>classpath:resource/config/jdbc.properties</value></list></property></bean>

此時的數(shù)據(jù)庫配置文件項目路徑是這樣的

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里面的信息讀進(jìn)來 對象中(可自定義): 如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>

轉(zhuǎn)載于:https://my.oschina.net/maoguangdong/blog/775943

總結(jié)

以上是生活随笔為你收集整理的Properties 配置文件参数 注入bean中的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

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