?
前些天發現了一個巨牛的人工智能學習網站,通俗易懂,風趣幽默,忍不住分享一下給大家。點擊跳轉到教程。
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
?
?
?
?
?
?
?