Spring的jdbcTemplate 與原始jdbc 整合c3p0的DBUtils 及Hibernate 對比

来源:https://www.cnblogs.com/qingyundian/archive/2018/05/26/9094572.html
-Advertisement-
Play Games

以User為操作對象 原始JDBC 這個註意ResultSet 是一個帶指針的結果集,指針開始指向第一個元素的前一個(首元素),不同於iterator 有hasNext() 和next() ,他只有next() 整合c3p0的DBUtils c3p0整合了連接資料庫的Connection ,提供更快 ...


以User為操作對象

package com.swift.jdbc;

public class User {

    private Long user_id;    
    private String    user_code;    
    private String    user_name;    
    private String    user_password;    
    private String    user_state;
    
    public User() {
        super();
        // TODO Auto-generated constructor stub
    }
    public User(Long user_id, String user_code, String user_name, String user_password, String user_state) {
        super();
        this.user_id = user_id;
        this.user_code = user_code;
        this.user_name = user_name;
        this.user_password = user_password;
        this.user_state = user_state;
    }
    public Long getUser_id() {
        return user_id;
    }
    public void setUser_id(Long user_id) {
        this.user_id = user_id;
    }
    public String getUser_code() {
        return user_code;
    }
    public void setUser_code(String user_code) {
        this.user_code = user_code;
    }
    public String getUser_name() {
        return user_name;
    }
    public void setUser_name(String user_name) {
        this.user_name = user_name;
    }
    public String getUser_password() {
        return user_password;
    }
    public void setUser_password(String user_password) {
        this.user_password = user_password;
    }
    public String getUser_state() {
        return user_state;
    }
    public void setUser_state(String user_state) {
        this.user_state = user_state;
    }
    @Override
    public String toString() {
        return "User [user_id=" + user_id + ", user_code=" + user_code + ", user_name=" + user_name + ", user_password="
                + user_password + ", user_state=" + user_state + "]";
    }
    
}

原始JDBC

這個註意ResultSet 是一個帶指針的結果集,指針開始指向第一個元素的前一個(首元素),不同於iterator 有hasNext() 和next() ,他只有next()

package com.swift.jdbc;

import java.beans.PropertyVetoException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;

import com.mchange.v2.c3p0.ComboPooledDataSource;

public class DemoJDBC {

    public static void main(String[] args) throws ClassNotFoundException, SQLException, PropertyVetoException {

        findAll();
        User user=findById(9l);
        System.out.println(user);
        user.setUser_name("HanMeimei");
        update(user);
    }

    private static void update(User user) throws PropertyVetoException, SQLException {

        ComboPooledDataSource dataSource=new ComboPooledDataSource();
        dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/crm");
        dataSource.setDriverClass("com.mysql.jdbc.Driver");
        dataSource.setPassword("root");
        dataSource.setUser("root");
        dataSource.setMinPoolSize(5);
        dataSource.setMaxIdleTime(2000);
        Connection con= dataSource.getConnection();
        String sql="update sys_user set user_name='"+user.getUser_name()+"' where user_id="+user.getUser_id();
        PreparedStatement statement = con.prepareStatement(sql);
        statement.executeUpdate();
        System.out.println("ok");
        
    }

    private static User findById(long id) throws ClassNotFoundException, SQLException {

        Class.forName("com.mysql.jdbc.Driver");
        Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/crm","root","root");
        Statement statement = con.createStatement();
        ResultSet rs = statement.executeQuery("select * from sys_user where user_id="+id);
        User user=null;
        while(rs.next()) {
            user=new User(rs.getLong("user_id"),rs.getString("user_code"),
                    rs.getString("user_name"),rs.getString("user_password"),
                    rs.getString("user_state"));
        }
        return user;
        
    }

    private static void findAll() throws ClassNotFoundException, SQLException {

        Class.forName("com.mysql.jdbc.Driver");
        Connection connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/crm?user=root&password=root");
        PreparedStatement statement = connection.prepareStatement("select * from sys_user");
        ResultSet rs = statement.executeQuery();
        List<User> list=new ArrayList<>();
        while(rs.next()) {
            Long id = rs.getLong("user_id");
            String code=rs.getString("user_code");
            String name=rs.getString("user_name");
            String password=rs.getString("user_password");
            String state=rs.getString("user_state");
            User user=new User();
            user.setUser_code(code);
            user.setUser_id(id);
            user.setUser_password(password);
            user.setUser_name(name);
            user.setUser_state(state);
            list.add(user);
        }
        for(User u:list) {
            System.out.println(u);
        }
        rs.close();
        connection.close();
    }

    
}

整合c3p0的DBUtils

c3p0整合了連接資料庫的Connection ,提供更快速的連接

package com.swift.c3p0;

import java.sql.Connection;
import java.sql.SQLException;

import javax.sql.DataSource;

import com.mchange.v2.c3p0.ComboPooledDataSource;

public class C3P0Utils {

    private static ComboPooledDataSource dataSource = new ComboPooledDataSource();
    private static ThreadLocal<Connection> thread=new ThreadLocal<>();
//    static {
//        try {
//            dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/crm");
//            dataSource.setDriverClass("com.mysql.jdbc.Driver");
//            dataSource.setUser("root");
//            dataSource.setPassword("root");
//            dataSource.setMinPoolSize(5);
//        } catch (PropertyVetoException e) {
//            e.printStackTrace();
//        }
//    }
    
    public static DataSource getDataSource() {
        return dataSource;
    }
    
    public static Connection getConnection() {
        Connection con = thread.get();
        if(con==null) {
            try {
                con = dataSource.getConnection();
                thread.set(con);
                con=thread.get();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
        return con;
        
    }
    public static void main(String[] args) {
        Connection con = C3P0Utils.getConnection();
        System.out.println(con);
    }
}

並可以直接載入xml配置文件,強於(DBCP連接池,他只支持properties文件)

<c3p0-config>
    <default-config>
        <property name="jdbcUrl">jdbc:mysql://localhost:3306/crm</property>
        <property name="driverClass">com.mysql.jdbc.Driver</property>
        <property name="user">root</property>
        <property name="password">root</property>
    </default-config>
</c3p0-config>

DBUtils的殺手鐧QueryRunner 

可以使用?了,放置惡意註意,也提供自動增加' '符號,這個要註意

package com.swift.dbutils;

import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;

import com.swift.c3p0.C3P0Utils;
import com.swift.jdbc.User;

public class DemoQueryRunner {

    private static QueryRunner qr=new QueryRunner(C3P0Utils.getDataSource());
    static List<User> users=new ArrayList<User>();
    
    public static void main(String[] args) throws SQLException {
        //查找所有
        users=findAll();
        for(User user:users) {
            
            System.out.println(user);
        }
        //通過Id查找
        User user=findById(9l);
        System.out.println(user);
        //更新
        user.setUser_name("韓梅梅");
        System.out.println("===================================");
        System.out.println(user);
        update(user);
        
    }

    private static void update(User user) throws SQLException {

        int update = qr.update(
                "update sys_user set user_name=? where user_id=?",user.getUser_name(),user.getUser_id());
        System.out.println(user.getUser_name()+update);
        
    }

    private static List<User> findAll() throws SQLException {
        List<User> users = qr.query("select * from sys_user ", new BeanListHandler<User>(User.class));
        return users;
    }

    private static User findById(long l) throws SQLException {

        User user = qr.query(
                "select * from sys_user where user_id=?",new BeanHandler<User>(User.class),l);
        return user;
        
    }

}

Hibernate 有個核心配置文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
    <!-- 約束在hibernate-core-5.0.7.Final.jar的org.hibernate包下的hibernate-configuration-3.0.dtd文件中找 -->
<hibernate-configuration>
    <session-factory>
    <!-- 配置方法:資料\hibernate-release-5.0.7.Final\project\etc\hibernate.properties -->
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/crm</property>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">root</property>
        
        <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
        
        <property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
        <property name="hibernate.c3p0.max_size">10</property>
        <property name="hibernate.c3p0.min_size">5</property>
        <property name="hibernate.c3p0.timeout">5000</property>
        
        <property name="hibernate.hbm2ddl.auto">update</property>
        <property name="hibernate.show_sql">true</property>
        <property name="hibernate.format_sql">true</property>
          
        <property name="hibernate.connection.isolation">2</property>
        
        <!-- 獲得當前session放在當前線程中 -->
        <!-- <property name="hibernate.current_session_context_class">thread</property> -->
        
        <mapping resource="com/swift/hibernate/User.hbm.xml"/>
    </session-factory>
</hibernate-configuration>
<property name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property>
這個是使用Hibernate自帶的c3p0功能,不需要自己寫c3p0.xml文件,但除了需要c3p0的jar包,還需要Hibernate自帶的jar包,可以在hibernate包的lib->optional->c3p0中找到,
此文件夾中這兩個jar:c3p0-0.9.1.jar和hibernate-c3p0-4.2.1.Final.jar都要用,否則異常
Could not instantiate connection provider [org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider]

還有個實體類的映射文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC 
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<!-- 約束在hibernate-core-5.0.7.Final.jar的org.hibernate包下的hibernate-mapping-3.0.dtd文件中找 -->
<hibernate-mapping>
    <class name="com.swift.hibernate.User" table="sys_user">
        <id name="user_id" column="user_id">
            <generator class="native"></generator>
        </id>
        <property name="user_code" column="user_code"></property>
        <property name="user_name" column="user_name"></property>
        <property name="user_password" column="user_password"></property>
        <property name="user_state" column="user_state"></property>
    </class>
</hibernate-mapping>

連接資料庫是通過session

package com.swift.hibernate;

import java.util.ArrayList;
import java.util.List;

import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class DemoHibernate {

    static List<User> users=new ArrayList<User>();
    public static void main(String[] args) {

        users=findAll();
        for(User user:users) {
            
            System.out.println(user);
        }
    }
    private static List<User> findAll() {
        
        //new Configuration()是創建Configuration類對象,調用裡面的configure方法,讀取配置信息,方法返回的又是Configuration類型
        Configuration config=new Configuration().configure();
        SessionFactory sf = config.buildSessionFactory();
        Session session = sf.openSession();
        Query query = session.createQuery("from User");
        users= query.list();
        session.close();
        return users;
    }

}



使用Spring的jdbcTemplate

關於倒包

Spring 總共有20個包看需要導入,其他還有spring的官方擴展包 (整合的較常用的一些,可根據功能導入)

這裡只要實現資料庫,所以,倒spring的4個核心包beans context core expression 2個日誌log4j commons-loging(可不倒)

c3p0要倒 連接資料庫mysql-connector-java  還有Spring的spring-jdbc 事務spring-tx 用註解要spring-aop

配置文件菜單法生成

applicationContext.xml(非官方約定俗成的,其實叫什麼都可以)

約束如果不想拷貝,可以用菜單導入 window --> preferences -->搜索(xml catalog) -->add-->file system(註意:把location最後的約束文件名複製到key的最後)

導入後

在xml配置文件中,輸入Spring的根標簽<beans></beans> 然後切換到design視圖右擊選擇 -->namespace-->勾選xsi(這時約束的約束,必須有,控制後面所有)

-->add-->specify new namespace -->location hint (把剛纔添加的約束導入)-->把去約束文件名的網址複製到 namespace name -->prefix隨便起個名(一般叫約束名

)

最後註意:beans不要有prefix 要設置為空,否則沒有標簽提示

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
                        http://www.springframework.org/schema/beans/spring-beans-4.2.xsd 
                        http://www.springframework.org/schema/aop 
                        http://www.springframework.org/schema/aop/spring-aop-4.2.xsd 
                        http://www.springframework.org/schema/context 
                        http://www.springframework.org/schema/context/spring-context-4.2.xsd 
                        http://www.springframework.org/schema/tx 
                        http://www.springframework.org/schema/tx/spring-tx-4.2.xsd ">
                        
    <context:component-scan base-package="com.swift"></context:component-scan>
    <context:property-placeholder location="classpath:db.properties"/>
    
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${driverClass}"></property>
        <property name="jdbcUrl" value="${jdbcUrl}"></property>
        <property name="user" value="${user}"></property>
        <property name="password" value="${password}"></property>
    </bean>
    
    
</beans>

 

<context:property-placeholder location="classpath:db.properties"/>

掃描src目錄下的properties文件使用${key}載入value 據說是spring的el語言spel

感覺這裡直接寫也可以,單獨拿到properties文件里可能不會感覺亂哄哄一堆

測試結果

 

package com.swift.jdbctemplate;

import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

import javax.sql.DataSource;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;

public class DemoJdbcTemplate {

    private static ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
    private static DataSource dataSource = (DataSource) context.getBean("dataSource");
    private static JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource);
    
    public static void main(String[] args) throws SQLException {
    
        User user=new User(null,null,"甲魚不是龜","456","0");
        add(user);
        List<User> users=new ArrayList<>();
        users=findAll();
        System.out.println(users);
        user=findById(23l);
        System.out.println(user);
    }

    private static User findById(long l) {
        return jdbcTemplate.queryForObject(
                "select * from sys_user where user_id=?", new BeanPropertyRowMapper<User>(User.class),l);
    }

    private static List<User> findAll() {
        
        return jdbcTemplate.query("select * from sys_user", new BeanPropertyRowMapper<User>(User.class));
    }

    private static void add(User user) {

        jdbcTemplate.update("insert into sys_user values(?,?,?,?,?)",
                null,null,user.getUser_name(),user.getUser_password(),user.getUser_state());
        System.out.println("插入記錄成功");
    }

}

 


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

-Advertisement-
Play Games
更多相關文章
  • 大家都知道,使用vue-cli可以快速的初始化一個基於Vue.js的項目,全局安裝腳手架之後,你可以通過vue list命令看到官方提供的5個模板 vue list 當開發一個獨立項目的時候,使用官方提供的template確實很方便,省去了繁瑣的依賴配置,webpack等配置問題,甚至連項目目錄結構 ...
  • 引言 之前就瞭解過kafka,看的似懂非懂,最近項目組中引入了 "kafka" ,剛好接著這個機會再次學習下。 Kafka在很多公司被用作分散式高性能消息隊列,kafka之前我只用過redis的list來做簡單的隊列處理,也還算好用,可能數據量比較小,也是單機運行,未出現過問題,用作輕量級消息隊列還 ...
  • Java開源生鮮電商平臺-通知模塊設計與架構(源碼可下載) 說明:對於一個生鮮的B2B平臺而言,通知對於我們實際的運營而言來講分為三種方式: 1. 消息推送:(採用極光推送) 2. 主頁彈窗通知。(比如:現在有什麼新的活動,有什麼新的優惠等等) 3. 簡訊通知.(對於簡訊通知,這個大家很熟悉,我們就 ...
  • Java原子類中CAS的底層實現 從Java到c++到彙編, 深入講解cas的底層原理. 介紹原理前, 先來一個Demo 以AtomicBoolean類為例.先來一個調用cas的demo. 主線程在for語句里cas忙迴圈, 直到cas操作成功返回true為止. 而新開的一個縣城new Thread ...
  • 寫出來的爬蟲,肯定不能只在一個頁面爬,只要要爬幾個頁面,甚至一個網站,這時候就需要用到翻頁了 其實翻頁很簡單,還是這個頁面http://bbs.fengniao.com/forum/10384633.html,話說我得給這個人增加了多大的訪問量啊...... 10384633重點關註下這個數字,這個 ...
  • 首先,我們可以從字面上理解一下final這個英文單詞的中文含義:“最後的,最終的; 決定性的; 不可更改的;”。顯然,final關鍵詞如果用中文來解釋,“不可更改的”更為合適。當你在編寫程式,可能會遇到這樣的情況:我想定義一個變數,它可以被初始化,但是它不能被更改。 例如我現在想要定義一個變數保存圓 ...
  • # coding=utf-8 # function函數:內置函數 # 例如: len int extent list range str # print insert append pop reverse sort # upper strip split lower # 特點、作用: # 1、可以直... ...
  • 一.上篇遺留及習題 1.下麵請看 我們來輸入一下結果 為什麼會是這樣呢?b不是等於a嗎,為什麼不是5而是3. 2.習題解答 (1.)區分下麵哪些是變數 name,name1,1name,na me,print,name_1 變數:name,name1,name_1 不是變數:1name,na me, ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...