Spring導入properties配置文件代碼示例
將外部屬性文件的數(shù)據(jù)配置到bean的配置文件,依賴于context標簽下的property-placeholder標簽
1、準備properties文件
url=jdbc:mysql://localhost:3306/hibernate_db username=root password=1111
2、編寫對應實體類
package com.yl.bean;public class DataSource { private String url; private String username; private String password; public DataSource() { } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } @Override public String toString() { return 'DataSource{' +'url=’' + url + ’’’ +', username=’' + username + ’’’ +', password=’' + password + ’’’ +’}’; }}
3、spring配置文件
<?xml version='1.0' encoding='UTF-8'?><beans xmlns='http://www.springframework.org/schema/beans' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:context='http://www.springframework.org/schema/context' xsi:schemaLocation='http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd'> <!--導入配置文件--> <context:property-placeholder location='classpath:db.properties'></context:property-placeholder> <!--DataSource--> <bean class='com.yl.bean.DataSource'> <property name='password' value='${password}'></property> <property name='username' value='${username}'></property> <property name='url' value='${url}'></property> </bean></beans>
4、測試
package com.yl;import com.yl.bean.DataSource;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class MainTest { public static void main(String[] args) { ApplicationContext applicationContext=new ClassPathXmlApplicationContext('bean1.xml'); DataSource dataSource= (DataSource) applicationContext.getBean('dataSource'); System.out.println(dataSource); }}
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. CSS hack用法案例詳解2. 利用promise及參數(shù)解構(gòu)封裝ajax請求的方法3. JSP數(shù)據(jù)交互實現(xiàn)過程解析4. asp(vbs)Rs.Open和Conn.Execute的詳解和區(qū)別及&H0001的說明5. ASP 信息提示函數(shù)并作返回或者轉(zhuǎn)向6. Ajax實現(xiàn)表格中信息不刷新頁面進行更新數(shù)據(jù)7. PHP設計模式中工廠模式深入詳解8. 解決AJAX返回狀態(tài)200沒有調(diào)用success的問題9. .NET中l(wèi)ambda表達式合并問題及解決方法10. ThinkPHP5實現(xiàn)JWT Token認證的過程(親測可用)
