真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Spring中如何使用屬性占位符配置器

本篇文章給大家分享的是有關(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è)咨詢

一 配置文件

                            dbconn.properties                                        

二 數(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è)資訊頻道。


網(wǎng)頁標(biāo)題:Spring中如何使用屬性占位符配置器
網(wǎng)址分享:http://weahome.cn/article/pgcihc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部