Spring框架第六篇之Spring與DAO

来源:http://www.cnblogs.com/Dylansuns/archive/2017/07/07/7134023.html
-Advertisement-
Play Games

一、Spring與JDBC模板 1、搭建環境 2、數據源的配置 3、從屬性文件讀取資料庫連接信息 4、配置JDBC模板 5、DAO實現類繼承JdbcDaoSupport類 6、對資料庫的增刪改操作 7、對資料庫的查詢操作 二、Spring的事務管理 ...


一、Spring與JDBC模板

 1、搭建環境

 首先導入需要的jar包:

以上jar中多導入了DBCP和C3P0的jar包,因為這裡需要演示怎麼配置多種數據源,所以導入了這兩個包,在實際開發中無需導入這兩個包。

2、數據源的配置

 數據源的配置分為3中情況:

1、Spring內置的連接池DriverManagerDataSource;

2、DBCP數據源 BasicDataSource;

3、C3P0數據源 ComboPooledDataSource;

具體在XML中的配置如下:

<?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:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
           http://www.springframework.org/schema/aop 
           http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">

    <!-- 註冊數據源:1、Spring內置連接池 -->
    <!--<bean id="myDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>-->

    <!-- 註冊數據源:2、DBCP -->
    <!--<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>-->

    <!-- 註冊數據源:3、C3P0 -->
    <bean id="myDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"/>
        <property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3306/test"/>
        <property name="user" value="root"/>
        <property name="password" value="root"/>
    </bean>

    <!-- 註冊JdbcTemplate -->
    <bean id="myJdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="myDataSource"/>
    </bean>

    <!-- 註冊Dao -->
    <bean id="studentDao" class="com.ietree.spring.dao.basic.dao.StudentDaoImpl">
        <property name="jdbcTemplate" ref="myJdbcTemplate"/>
    </bean>

    <!-- 註冊Service -->
    <bean id="studentService" class="com.ietree.spring.dao.basic.service.StudentServiceImpl">
        <property name="dao" ref="studentDao"/>
    </bean>

</beans>

 

3、從屬性文件讀取資料庫連接信息

創建db.properties資料庫配置文件:

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/test
jdbc.user=root
jdbc.password=root

配置Spring配置文件:

<!-- 註冊數據源:3、C3P0 -->
    <bean id="myDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.user}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>

    <!--註冊屬性文件:方式一-->
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:db.properties"/>
    </bean>

    <!--註冊屬性文件:方式二-->
    <context:property-placeholder location="classpath:db.properties"/>

 

4、配置JDBC模板

<bean id="myJdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
     <property name="dataSource" ref="myDataSource"/>
</bean>
<!-- 註冊Dao -->
<bean id="studentDao" class="com.ietree.spring.dao.basic.dao.StudentDaoImpl">
     <property name="jdbcTemplate" ref="myJdbcTemplate"/>
</bean>

 

5、DAO實現類繼承JdbcDaoSupport類,對資料庫的增刪改查操作

package com.ietree.spring.dao.basic.dao;

import com.ietree.spring.dao.basic.bean.Student;
import com.ietree.spring.dao.basic.bean.StudentRowMapper;
import org.springframework.jdbc.core.support.JdbcDaoSupport;

import java.util.List;

/**
 * Created by Root on 2017/7/9.
 */
public class StudentDaoImpl extends JdbcDaoSupport implements IStudentDao {

    @Override
    public void insertStudent(Student student) {
        String sql = "INSERT INTO tbl_student(name,age) VALUES(?,?)";
        this.getJdbcTemplate().update(sql,student.getName(),student.getAge());
    }

    @Override
    public void deleteStudent(int id) {
        String sql = "DELETE FROM tbl_student WHERE id = ?";
        this.getJdbcTemplate().update(sql,id);
    }

    @Override
    public void updateStudent(Student student) {
        String sql = "UPDATE tbl_student SET name=?,age=? WHERE id = ?;";
        this.getJdbcTemplate().update(sql,student.getName(),student.getAge(),student.getId());
    }

    @Override
    public List<String> selectAllStudentNames() {
        String sql = "SELECT name FROM tbl_student";
        return this.getJdbcTemplate().queryForList(sql,String.class);
    }

    @Override
    public String selectStudentNameById(int id) {
        String sql = "SELECT name FROM tbl_student WHERE id = ?";
        return this.getJdbcTemplate().queryForObject(sql,String.class,id);
    }

    @Override
    public List<Student> selectAllStudent() {
        String sql = "SELECT id,name,age FROM tbl_student";
        return this.getJdbcTemplate().query(sql, new StudentRowMapper());
    }

    @Override
    public Student selectStudentById(int id) {
        String sql = "SELECT id,name,age FROM tbl_student WHERE id = ?";
        return this.getJdbcTemplate().queryForObject(sql, new StudentRowMapper(),id);
    }
}

 StudentRowMapper類:

package com.ietree.spring.dao.basic.bean;

import org.springframework.jdbc.core.RowMapper;

import java.sql.ResultSet;
import java.sql.SQLException;

/**
 * Created by Root on 2017/7/11.
 */
public class StudentRowMapper implements RowMapper<Student> {

    /**
     * 這裡的rs代表的是查詢出來的結果中的一行數據,並非代表所有數據。只要能執行到這個方法,就說明rs不可能為空
     */
    @Override
    public Student mapRow(ResultSet rs, int rowNum) throws SQLException {
        Student student = new Student();
        student.setId(rs.getInt("id"));
        student.setName(rs.getString("name"));
        student.setAge(rs.getInt("age"));
        return student;
    }
}

 以上案例完整的配置文件如下:

<?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">

    <!-- 註冊數據源:1、Spring內置連接池 -->
    <!--<bean id="myDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>-->

    <!-- 註冊數據源:2、DBCP -->
    <!--<bean id="myDataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://127.0.0.1:3306/test"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>-->

    <!-- 註冊數據源:3、C3P0 -->
    <!--<bean id="myDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver"/>
        <property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3306/test"/>
        <property name="user" value="root"/>
        <property name="password" value="root"/>
    </bean>-->

    <!-- 註冊數據源:3、C3P0 -->
    <bean id="myDataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${jdbc.driver}"/>
        <property name="jdbcUrl" value="${jdbc.url}"/>
        <property name="user" value="${jdbc.user}"/>
        <property name="password" value="${jdbc.password}"/>
    </bean>

    <!--註冊屬性文件:方式一-->
    <!--<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:db.properties"/>
    </bean>-->

    <!--註冊屬性文件:方式二-->
    <context:property-placeholder location="classpath:db.properties"/>

    <!-- 根據JdbcDaoSupport類的源碼可以省略JdbcTemplate的註冊,將DataSource作為Dao的屬性 -->
    <!-- 註冊JdbcTemplate -->
    <bean id="myJdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="myDataSource"/>
    </bean>
    <!-- 註冊Dao -->
    <bean id="studentDao" class="com.ietree.spring.dao.basic.dao.StudentDaoImpl">
        <property name="jdbcTemplate" ref="myJdbcTemplate"/>
    </bean>

    <!-- 註冊Dao -->
    <bean id="studentDao" class="com.ietree.spring.dao.basic.dao.StudentDaoImpl">
        <property name="dataSource" ref="myDataSource"/>
    </bean>

    <!-- 註冊Service -->
    <bean id="studentService" class="com.ietree.spring.dao.basic.service.StudentServiceImpl">
        <property name="dao" ref="studentDao"/>
    </bean>

</beans>

 

二、Spring的事務管理

 1、Spring事務管理API

 

2、使用Spring的事務代理工廠管理事務

 

3、使用Spring的事務註解管理事務

 

4、使用AspectJ的AOP配置管理事務

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 本文大部分內容摘自 《.NET開發專家·亮劍.NET : .NET深入體驗與實戰精要》 博主只是搬運工,不喜勿噴。 關於虛方法,抽象類這一部分一直不是太清楚,目前的工作中也接觸不到這些。 前幾天下載了一本書,發現寫的很形象,讓我豁然開朗。 整理一下,再打一遍,加深理解,也幫助更多的初學者瞭解這部分知 ...
  • 這篇文章介紹了在ASP.NET Core應用程式中可以用於處理釋放資源的一些方法,特別是在使用內置的依賴註入容器時。 ...
  • Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Car has a deprecated constructor in E:\phpS... ...
  • 1.繼承關係 2.Error 程式運行時發生的無法被處理的錯誤,一旦發生,JVM終止執行。 3.Exception Exception是程式編譯與運行時出現的一種錯誤,一旦出現,JVM將告知程式員處理。分為兩種: 運行時異常:在運行時發生,RuntimeException類及子類。編譯時不需要處理, ...
  • 靜態類與實例類 共同點 不同點 單例模式?Unity ...
  • 第一步。 sudo apt-get update sudo apt-get upgrade 先更新。。 Django的主流部署方式:nginx+uwsgi+django 第二步,安裝nginx sudo apt-get install nginx 安裝nginx,如果需要安裝最新的nginx需從官網 ...
  • 一、python第一行代碼: 二、變數: name前後變化,而name2 = name已經將“SunDM12”賦值給了name2,name變化後,name2不再變化 三、交互: input函數:用戶可以在界面上顯示輸入字元,並賦值給了username 在屏幕列印的第一種格式。 %s是字元串;%d是雙 ...
  • include包含頭文件的語句中,雙引號和尖括弧的區別 #include <>格式:引用標準庫頭文件,編譯器從標準庫目錄開始搜索 #incluce ""格式:引用非標準庫的頭文件,編譯器從用戶的工作目錄開始搜索 預處理器發現 #include 指令後,就會尋找後跟的文件名並把這個文件的內容包含到當前 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...