JDBC(Java DataBase Connectivity)是Java和數據庫之間的一個橋樑,是一個規範而不是一個實現,可以執行SQL語句。它由一組用Java語言編寫的類和接口組成。各類不一樣類型的數據庫都有相應的實現。java
1 Connection conn = null; 2 Statement stmt = null; 3 try { 4 // 註冊 JDBC 驅動 5 Class.forName("com.mysql.jdbc.Driver"); 6 7 // 建立連接 8 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/push_system_new?characterEncoding=UTF-8", "root", "123456"); 9 10 // 執行查詢 11 stmt = conn.createStatement(); 12 String sql = "SELECT id, app_id, device_token FROM push_device_0"; 13 ResultSet rs = stmt.executeQuery(sql); 14 15 while (rs.next()) { 16 // 經過字段檢索 17 long id = rs.getLong("id"); 18 long appId = rs.getLong("app_id"); 19 String deviceToken = rs.getString("device_token"); 20 21 // 輸出數據 22 System.out.print("device_id: " + id); 23 System.out.print(", appId: " + appId); 24 System.out.print(", device_token: " + deviceToken); 25 System.out.print("\n"); 26 break; 27 } 28 29 // 完成後關閉 30 rs.close(); 31 stmt.close(); 32 conn.close(); 33 34 } catch(SQLException se) { 35 // 處理 JDBC 錯誤 36 se.printStackTrace(); 37 38 } catch(Exception e) { 39 // 處理 Class.forName 錯誤 40 e.printStackTrace(); 41 42 } finally { 43 // 關閉資源 44 try { 45 if (stmt != null) stmt.close(); 46 } catch(SQLException se2) { 47 48 } 49 50 // 什麼都不作 51 try { 52 if (conn != null) conn.close(); 53 } catch(SQLException se) { 54 se.printStackTrace(); 55 } 56 }
JDBC主要接口:mysql
DataSource表示一種建立Connection的工廠,在jdk 1.4引入,相對DriverManager的方式更優先推薦使用DataSource。支持三種實現類型:spring
基於DataSource產生了兩個很是經常使用的數據庫鏈接池框架:DBCP和C3P0,解決了數據庫鏈接的複用問題,極大地提升了數據庫鏈接的使用性能。sql
看一個DBCP的簡單用例,bean配置:數據庫
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"/> <property name="url" value="jdbc:mysql://localhost:3306/push_system_new"/> <property name="username" value="root"/> <property name="password" value="123456"/> <property name="initialSize" value="5"/> <property name="maxActive" value="30"/> <property name="maxIdle" value="5"/> <property name="minIdle" value="2"/> </bean>
pom.xml 依賴apache
<dependency> <groupId>commons-dbcp</groupId> <artifactId>commons-dbcp</artifactId> <version>1.4</version> </dependency>
public class pushDeviceDaoImpl { private JdbcTemplate jdbcTemplate; public List<DeviceInfo> query(long appId) { String sql = "select * from push_device_0 where app_id=? "; return jdbcTemplate.query(sql, new DeviceRowMapper(), appId); } @Data class DeviceInfo { long app_id; long id; String device_token; } class DeviceRowMapper implements RowMapper<DeviceInfo> { public DeviceInfo mapRow(ResultSet rs, int rowNum) throws SQLException { DeviceInfo deviceInfo = new DeviceInfo(); deviceInfo.setId(rs.getLong("id")); deviceInfo.setApp_id(rs.getLong("app_id")); deviceInfo.setDevice_token(rs.getString("device_token")); return deviceInfo; } } public void setJdbcTemplate(JdbcTemplate jdbcTemplate) { this.jdbcTemplate = jdbcTemplate; } }
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name = "dataSource" ref="dataSource"/> </bean> <bean id="pushDeviceDao" class="com.example.demo.pushDeviceDaoImpl"> <property name="jdbcTemplate" ref="jdbcTemplate"/> </bean>
方法二、編程
public class pushDeviceDaoImpl { private JdbcTemplate jdbcTemplate; public List<DeviceInfo> query(long appId) { String sql = "select * from push_device_0 where app_id=? "; return jdbcTemplate.query(sql, new DeviceRowMapper(), appId); } @Data class DeviceInfo { long app_id; long id; String device_token; } class DeviceRowMapper implements RowMapper<DeviceInfo> { public DeviceInfo mapRow(ResultSet rs, int rowNum) throws SQLException { DeviceInfo deviceInfo = new DeviceInfo(); deviceInfo.setId(rs.getLong("id")); deviceInfo.setApp_id(rs.getLong("app_id")); deviceInfo.setDevice_token(rs.getString("device_token")); return deviceInfo; } } public void setDataSource(DataSource dataSource) { this.jdbcTemplate = new JdbcTemplate(dataSource); } }
xml中的bean配置:app
<bean id="pushDeviceDao" class="com.example.demo.pushDeviceDaoImpl"> <property name="dataSource" ref="dataSource"/> </bean>
public class pushDeviceDaoImpl extends JdbcDaoSupport { @Data class DeviceInfo { long app_id; long id; String device_token; } public List<DeviceInfo> query(long appId) { String sql = "select * from push_device_0 where app_id=? "; return getJdbcTemplate().query(sql, new DeviceRowMapper(), appId); } public List<DeviceInfo> queryToken(long appId, String deviceToken) { String sql = "select * from push_device_23 where app_id=? and device_token=?"; PreparedStatementSetter pss = new PreparedStatementSetter() { public void setValues(PreparedStatement preparedStatement) throws SQLException { preparedStatement.setLong(1, appId); preparedStatement.setString(2, deviceToken); } }; ResultSetExtractor rse = new ResultSetExtractor<List<DeviceInfo>>() { public List<DeviceInfo> extractData(ResultSet rs) throws SQLException, DataAccessException { List<DeviceInfo> list = new ArrayList<>(); while (rs.next()) { DeviceInfo deviceInfo = new DeviceInfo(); deviceInfo.setId(rs.getLong("id")); deviceInfo.setApp_id(rs.getLong("app_id")); deviceInfo.setDevice_token(rs.getString("device_token")); list.add(deviceInfo); } return list; } }; return (List<DeviceInfo>) getJdbcTemplate().query(sql, pss, rse); } class DeviceRowMapper implements RowMapper<DeviceInfo> { public DeviceInfo mapRow(ResultSet rs, int rowNum) throws SQLException { DeviceInfo deviceInfo = new DeviceInfo(); deviceInfo.setId(rs.getLong("id")); deviceInfo.setApp_id(rs.getLong("app_id")); deviceInfo.setDevice_token(rs.getString("device_token")); return deviceInfo; } } }
這裏用到了 ResultSetExtractor 接口,該接口的實現執行從ResultSet
提取結果的實際工做,不須要擔憂異常處理,它調用JdbcTemplate
捕獲並處理SQLExceptions。 該接口主要用於JDBC框架自己。 RowMapper
一般是ResultSet
處理的簡單選擇查詢,每行映射一個結果對象,而不是整個ResultSet
的一個結果對象。框架
xml中的bean配置:分佈式
<bean id="pushDeviceDao" class="com.example.demo.pushDeviceDaoImpl"> <property name="dataSource" ref="dataSource"/> </bean>
JdbcTemplate主要提供下列方法:
一、execute方法:能夠用於執行任何SQL語句,通常用於執行DDL語句;
二、update方法及batchUpdate方法:update方法用於執行新增、修改、刪除等語句;batchUpdate方法用於執行批處理相關語句;
三、query方法及queryForXXX方法:用於執行查詢相關語句;
四、call方法:用於執行存儲過程、函數相關語句。
getJdbcTemplate().update("insert into user values(?,?,?)", user.getId(), user.getUsername(), user.getPassword()); getJdbcTemplate().update("delete from user where id=?", id); getJdbcTemplate().update("update user set username=?,password=? where id=?", user.getUsername(), user.getPassword(), user.getId()); getJdbcTemplate().queryForObject("select username from user where id=?", String.class, id); // 簡單查詢,返回原始數據類型 getJdbcTemplate().queryForInt("select count(*) from user"); // 簡單查詢,返回原始數據類型 getJdbcTemplate().queryForObject("select * from user where id=?", new UserRowMapper(), id); // 查詢單個對象 getJdbcTemplate().query("select * from user", new UserRowMapper()); // 查詢對象集合