溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

spring中?JdbcTemplate怎么使用

發(fā)布時間:2022-10-21 11:53:03 來源:億速云 閱讀:137 作者:iii 欄目:開發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“spring中JdbcTemplate怎么使用”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“spring中JdbcTemplate怎么使用”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。

Spring JDBC 數(shù)據(jù)訪問
Spring JDBC是Spring所提供的持久層技術(shù),它的主要目標(biāo)是降低使用JDBC API的門檻,以一種更直接,更簡介,更簡單的方式使用JDBC API, 在Spring JDBC里,僅需做那些與業(yè)務(wù)相關(guān)的DML操作,而將資源獲取,Statment創(chuàng)建,資源釋放以及異常處理等繁雜而乏味的工作交給Spring JDBC…

雖然ORM的框架已經(jīng)成熟豐富,但是JDBC的靈活,直接的特性,依然讓他擁有自己的用武之地,如在完全依賴查詢模型動態(tài)產(chǎn)生查詢語句的綜合查詢系統(tǒng)中,Hibernaye,MyBatis,JPA等框架都無法使用,這里JDBC是唯一的選擇.

JdbcTemplate 的使用
1.導(dǎo)入jar包

 <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <version>5.1.37</version>
    </dependency>
    <dependency>
      <groupId>com.mchange</groupId>
      <artifactId>c3p0</artifactId>
      <version>0.9.5.2</version>
    </dependency>
    <!-- 配置的 spring-jdbc -->
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-jdbc</artifactId>
      <version>4.3.18.RELEASE</version>
    </dependency>

2.測試 JdbcTemplate的使用

public void test() {

    //創(chuàng)建一個連接池
    ComboPooledDataSource comboPooledDataSource=new ComboPooledDataSource();
    try {
        comboPooledDataSource.setDriverClass("com.mysql.jdbc.Driver");
        comboPooledDataSource.setJdbcUrl("jdbc:mysql://localhost:3306/ssm");
        comboPooledDataSource.setUser("root");
        comboPooledDataSource.setPassword("123");

        //2.創(chuàng)建JdbcTemplate對象
        JdbcTemplate jdbcTemplate=new JdbcTemplate(comboPooledDataSource);


        //3.執(zhí)行sql
        String sql="insert into users values(null,?,?)";

       jdbcTemplate.update(sql,"daimenglaoshi","123");


    } catch (PropertyVetoException e) {
        e.printStackTrace();
    }

}

讀到這里,這篇“spring中JdbcTemplate怎么使用”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI