本篇文章給大家分享的是有關(guān)Spring中如何使用屬性占位符配置器,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
成都創(chuàng)新互聯(lián)主營東營區(qū)網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,App定制開發(fā),東營區(qū)h5微信小程序開發(fā)搭建,東營區(qū)網(wǎng)站營銷推廣歡迎東營區(qū)等地區(qū)企業(yè)咨詢
一 配置文件
二 數(shù)據(jù)庫配置屬性
jdbc.driverClassName=com.MySQL.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/springjdbc.username=rootjdbc.password=32147
三 測試類
package lee;import javax.sql.DataSource;import java.sql.*;import org.springframework.context.*;import org.springframework.context.support.*;public class BeanTest{ public static void main(String[] args)throws Exception { ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); DataSource ds = (DataSource)ctx.getBean("dataSource"); Connection conn = ds.getConnection(); PreparedStatement pstmt = conn.prepareStatement( "insert into news_inf value(null , ? , ?)"); pstmt.setString(1 , "瘋狂Java講義1"); pstmt.setString(2 , "Struts 2權(quán)威指南2"); pstmt.executeUpdate(); pstmt.close(); conn.close(); }}
以上就是Spring中如何使用屬性占位符配置器,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。