用 @Value(“${xxxx}“)注解从配置文件读取值的用法
生活随笔
收集整理的這篇文章主要介紹了
用 @Value(“${xxxx}“)注解从配置文件读取值的用法
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
?
前些天發(fā)現(xiàn)了一個(gè)巨牛的人工智能學(xué)習(xí)網(wǎng)站,通俗易懂,風(fēng)趣幽默,忍不住分享一下給大家。點(diǎn)擊跳轉(zhuǎn)到教程。
1. ?用法:
從配置properties文件中讀取init.password 的值。
?
@Value("${init.password}")private String initPwd;?
?
?
?
?
2. 在spring的配置文件中加載配置文件dbconfig.properties :
?
<!-- 加載配置文件 --><bean id="configProperties" class="org.springframework.beans.factory.config.PropertiesFactoryBean"><property name="fileEncoding" value="UTF-8"/><property name="locations"><list><value>classpath:dbconfig.properties</value></list></property></bean>或者這樣加載:
?
?
<context:property-placeholder location="classpath:dbconfig.properties" />?
或者這樣加載:
?
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"><property name="location"><value>dbconfig.properties</value></property></bean>?
?
?
3.?dbconfig.properties ?文件:
?
?
?
#MD5 password.algorithmName=md5 password.hashIterations=2 #initpwd init.password=admin?
?
?
?
?
?
?
創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)總結(jié)
以上是生活随笔為你收集整理的用 @Value(“${xxxx}“)注解从配置文件读取值的用法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ASP.NET 2.0中控件的简单异步回
- 下一篇: JAVA使用FTPClient类读写FT