JDBC的学习--尚硅谷
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JDBC的学习--尚硅谷相关的知识,希望对你有一定的参考价值。
1.数据库的连接
- /**
- * DriverManager 是驱动的管理类.
- * 1). 可以通过重载的 getConnection() 方法获取数据库连接. 较为方便
- * 2). 可以同时管理多个驱动程序: 若注册了多个数据库连接, 则调用 getConnection()
- * 方法时传入的参数不同, 即返回不同的数据库连接。
- * @throws Exception
- */
- @Test
- public void testGetConnection2() throws Exception{
- System.out.println(getConnection2());
- }
- public Connection getConnection2() throws Exception{
- //1. 准备连接数据库的 4 个字符串.
- //1). 创建 Properties 对象
- Properties properties = new Properties();
- //2). 获取 jdbc.properties 对应的输入流
- InputStream in =
- this.getClass().getClassLoader().getResourceAsStream("jdbc.properties");
- //3). 加载 2) 对应的输入流
- properties.load(in);
- //4). 具体决定 user, password 等4 个字符串.
- String user = properties.getProperty("user");
- String password = properties.getProperty("password");
- String jdbcUrl = properties.getProperty("jdbcUrl");
- String driver = properties.getProperty("driver");
- //2. 加载数据库驱动程序(对应的 Driver 实现类中有注册驱动的静态代码块.)
- Class.forName(driver);
- //3. 通过 DriverManager 的 getConnection() 方法获取数据库连接.
- return DriverManager.getConnection(jdbcUrl, user, password);
- }
2.statement 和prepareStatement
- @Test
- public void testPreparedStatement() {
- Connection connection = null;
- PreparedStatement preparedStatement = null;
- try {
- connection = JDBCTools.getConnection();
- String sql = "INSERT INTO customers (name, email, birth) "
- + "VALUES(?,?,?)";
- preparedStatement = connection.prepareStatement(sql);
- preparedStatement.setString(1, "ATGUIGU");
- preparedStatement.setString(2, "[email protected]");
- preparedStatement.setDate(3,
- new Date(new java.util.Date().getTime()));
- preparedStatement.executeUpdate();
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- JDBCTools.releaseDB(null, preparedStatement, connection);
- }
- }
- /**
- * SQL 注入.
- */
- @Test
- public void testSQLInjection() {
- String username = "a‘ OR PASSWORD = ";
- String password = " OR ‘1‘=‘1";
- String sql = "SELECT * FROM users WHERE username = ‘" + username
- + "‘ AND " + "password = ‘" + password + "‘";
- System.out.println(sql);
- Connection connection = null;
- Statement statement = null;
- ResultSet resultSet = null;
- try {
- connection = JDBCTools.getConnection();
- statement = connection.createStatement();
- resultSet = statement.executeQuery(sql);
- if (resultSet.next()) {
- System.out.println("登录成功!");
- } else {
- System.out.println("用户名和密码不匹配或用户名不存在. ");
- }
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- JDBCTools.releaseDB(resultSet, statement, connection);
- }
- }
3.JDBCTools
- package com.atguigu.jdbc;
- import java.io.IOException;
- import java.io.InputStream;
- 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.Properties;
- public class JDBCTools {
- /**
- * 执行 SQL 语句, 使用 PreparedStatement
- * @param sql
- * @param args: 填写 SQL 占位符的可变参数
- */
- public static void update(String sql, Object ... args){
- Connection connection = null;
- PreparedStatement preparedStatement = null;
- try {
- connection = JDBCTools.getConnection();
- preparedStatement = connection.prepareStatement(sql);
- for(int i = 0; i < args.length; i++){
- preparedStatement.setObject(i + 1, args[i]);
- }
- preparedStatement.executeUpdate();
- } catch (Exception e) {
- e.printStackTrace();
- } finally{
- JDBCTools.releaseDB(null, preparedStatement, connection);
- }
- }
- /**
- * 执行 SQL 的方法
- *
- * @param sql: insert, update 或 delete。 而不包含 select
- */
- public static void update(String sql) {
- Connection connection = null;
- Statement statement = null;
- try {
- // 1. 获取数据库连接
- connection = getConnection();
- // 2. 调用 Connection 对象的 createStatement() 方法获取 Statement 对象
- statement = connection.createStatement();
- // 4. 发送 SQL 语句: 调用 Statement 对象的 executeUpdate(sql) 方法
- statement.executeUpdate(sql);
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- // 5. 关闭数据库资源: 由里向外关闭.
- releaseDB(null, statement, connection);
- }
- }
- /**
- * 释放数据库资源的方法
- *
- * @param resultSet
- * @param statement
- * @param connection
- */
- public static void releaseDB(ResultSet resultSet, Statement statement,
- Connection connection) {
- if (resultSet != null) {
- try {
- resultSet.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- if (statement != null) {
- try {
- statement.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- if (connection != null) {
- try {
- connection.close();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- }
- /**
- * 获取数据库连接的方法
- */
- public static Connection getConnection() throws IOException,
- ClassNotFoundException, SQLException {
- // 0. 读取 jdbc.properties
- /**
- * 1). 属性文件对应 Java 中的 Properties 类 2). 可以使用类加载器加载 bin 目录(类路径下)的文件
- */
- Properties properties = new Properties();
- InputStream inStream = ReviewTest.class.getClassLoader()
- .getResourceAsStream("jdbc.properties");
- properties.load(inStream);
- // 1. 准备获取连接的 4 个字符串: user, password, jdbcUrl, driverClass
- String user = properties.getProperty("user");
- String password = properties.getProperty("password");
- String jdbcUrl = properties.getProperty("jdbcUrl");
- String driverClass = properties.getProperty("driverClass");
- // 2. 加载驱动: Class.forName(driverClass)
- Class.forName(driverClass);
- // 3. 调用
- // DriverManager.getConnection(jdbcUrl, user, password)
- // 获取数据库连接
- Connection connection = DriverManager.getConnection(jdbcUrl, user,
- password);
- return connection;
- }
- }
4.DAO
- package com.atguigu.jdbc;
- import java.lang.reflect.InvocationTargetException;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.ResultSetMetaData;
- import java.sql.SQLException;
- import java.util.ArrayList;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import org.apache.commons.beanutils.BeanUtils;
- public class DAO {
- // INSERT, UPDATE, DELETE 操作都可以包含在其中
- public void update(String sql, Object... args) {
- Connection connection = null;
- PreparedStatement preparedStatement = null;
- try {
- connection = JDBCTools.getConnection();
- preparedStatement = connection.prepareStatement(sql);
- for (int i = 0; i < args.length; i++) {
- preparedStatement.setObject(i + 1, args[i]);
- }
- preparedStatement.executeUpdate();
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- JDBCTools.releaseDB(null, preparedStatement, connection);
- }
- }
- // 查询一条记录, 返回对应的对象
- public <T> T get(Class<T> clazz, String sql, Object... args) {
- List<T> result = getForList(clazz, sql, args);
- if(result.size() > 0){
- return result.get(0);
- }
- return null;
- }
- /**
- * 传入 SQL 语句和 Class 对象, 返回 SQL 语句查询到的记录对应的 Class 类的对象的集合
- * @param clazz: 对象的类型
- * @param sql: SQL 语句
- * @param args: 填充 SQL 语句的占位符的可变参数.
- * @return
- */
- public <T> List<T> getForList(Class<T> clazz,
- String sql, Object... args) {
- List<T> list = new ArrayList<>();
- Connection connection = null;
- PreparedStatement preparedStatement = null;
- ResultSet resultSet = null;
- try {
- //1. 得到结果集
- connection = JDBCTools.getConnection();
- preparedStatement = connection.prepareStatement(sql);
- for (int i = 0; i < args.length; i++) {
- preparedStatement.setObject(i + 1, args[i]);
- }
- resultSet = preparedStatement.executeQuery();
- //2. 处理结果集, 得到 Map 的 List, 其中一个 Map 对象
- //就是一条记录. Map 的 key 为 reusltSet 中列的别名, Map 的 value
- //为列的值.
- List<Map<String, Object>> values =
- handleResultSetToMapList(resultSet);
- //3. 把 Map 的 List 转为 clazz 对应的 List
- //其中 Map 的 key 即为 clazz 对应的对象的 propertyName,
- //而 Map 的 value 即为 clazz 对应的对象的 propertyValue
- list = transfterMapListToBeanList(clazz, values);
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- JDBCTools.releaseDB(resultSet, preparedStatement, connection);
- }
- return list;
- }
- public <T> List<T> transfterMapListToBeanList(Class<T> clazz,
- List<Map<String, Object>> values) throws InstantiationException,
- IllegalAccessException, InvocationTargetException {
- List<T> result = new ArrayList<>();
- T bean = null;
- if (values.size() > 0) {
- for (Map<String, Object> m : values) {
- bean = clazz.newInstance();
- for (Map.Entry<String, Object> entry : m.entrySet()) {
- String propertyName = entry.getKey();
- Object value = entry.getValue();
- BeanUtils.setProperty(bean, propertyName, value);
- }
- // 13. 把 Object 对象放入到 list 中.
- result.add(bean);
- }
- }
- return result;
- }
- /**
- * 处理结果集, 得到 Map 的一个 List, 其中一个 Map 对象对应一条记录
- *
- * @param resultSet
- * @return
- * @throws SQLException
- */
- public List<Map<String, Object>> handleResultSetToMapList(
- ResultSet resultSet) throws SQLException {
- // 5. 准备一个 List<Map<String, Object>>:
- // 键: 存放列的别名, 值: 存放列的值. 其中一个 Map 对象对应着一条记录
- List<Map<String, Object>> values = new ArrayList<>();
- List<String> columnLabels = getColumnLabels(resultSet);
- Map<String, Object> map = null;
- // 7. 处理 ResultSet, 使用 while 循环
- while (resultSet.next()) {
- map = new HashMap<>();
- for (String columnLabel : columnLabels) {
- Object value = resultSet.getObject(columnLabel);
- map.put(columnLabel, value);
- }
- // 11. 把一条记录的一个 Map 对象放入 5 准备的 List 中
- values.add(map);
- }
- return values;
- }
- /**
- * 获取结果集的 ColumnLabel 对应的 List
- *
- * @param rs
- * @return
- * @throws SQLException
- */
- private List<String> getColumnLabels(ResultSet rs) throws SQLException {
- List<String> labels = new ArrayList<>();
- ResultSetMetaData rsmd = rs.getMetaData();
- for (int i = 0; i < rsmd.getColumnCount(); i++) {
- labels.add(rsmd.getColumnLabel(i + 1));
- }
- return labels;
- }
- // 返回某条记录的某一个字段的值 或 一个统计的值(一共有多少条记录等.)
- public <E> E getForValue(String sql, Object... args) {
- //1. 得到结果集: 该结果集应该只有一行, 且只有一列
- Connection connection = null;
- PreparedStatement preparedStatement = null;
- ResultSet resultSet = null;
- try {
- //1. 得到结果集
- connection = JDBCTools.getConnection();
- preparedStatement = connection.prepareStatement(sql);
- for (int i = 0; i < args.length; i++) {
- preparedStatement.setObject(i + 1, args[i]);
- }
- resultSet = preparedStatement.executeQuery();
- if(resultSet.next()){
- return (E) resultSet.getObject(1);
- }
- } catch(Exception ex){
- ex.printStackTrace();
- } finally{
- JDBCTools.releaseDB(resultSet, preparedStatement, connection);
- }
- //2. 取得结果
- return null;
- }
- }
5.事务和事务的隔离级别
- package com.atguigu.jdbc;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import org.junit.Test;
- public class TransactionTest {
- /**
- * 测试事务的隔离级别 在 JDBC 程序中可以通过 Connection 的 setTransactionIsolation 来设置事务的隔离级别.
- */
- @Test
- public void testTransactionIsolationUpdate() {
- Connection connection = null;
- try {
- connection = JDBCTools.getConnection();
- connection.setAutoCommit(false);
- String sql = "UPDATE users SET balance = "
- + "balance - 500 WHERE id = 1";
- update(connection, sql);
- connection.commit();
- } catch (Exception e) {
- e.printStackTrace();
- } finally {
- }
- }
- @Test
- public void testTransactionIsolationRead() {
- String sql = "SELECT balance FROM users WHERE id = 1";
- Integer balance = getForValue(sql);
- System.out.println(balance);
- }
- // 返回某条记录的某一个字段的值 或 一个统计的值(一共有多少条记录等.)
- public <E> E getForValue(String sql, Object... args) {
- // 1. 得到结果集: 该结果集应该只有一行, 且只有一列
- Connection connection = null;
- PreparedStatement preparedStatement = null;
- ResultSet resultSet = null;
- try {
- // 1. 得到结果集
- connection = JDBCTools.getConnection();
- System.out.println(connection.getTransactionIsolation());
- // connection.setTransactionIsolation(Connection.TRANSACTION_READ_UNCOMMITTED);
- connection.setTransactionIsolation(Connection.TRANSACTION_READ_COMMITTED);
- preparedStatement = connection.prepareStatement(sql);
- for (int i = 0; i < args.length; i++) {
- preparedStatement.setObject(i + 1, args[i]);
- }
- resultSet = preparedStatement.executeQuery();
- if (resultSet.next()) {
- return (E) resultSet.getObject(1);
- }
- } catch (Exception ex) {
- ex.printStackTrace();
- } finally {
- JDBCTools.releaseDB(resultSet, preparedStatement, connection);
- }
- // 2. 取得结果
- return null;
以上是关于JDBC的学习--尚硅谷的主要内容,如果未能解决你的问题,请参考以下文章
尚硅谷MySQL从新手到老手(适合MySQL萌新零基础人员学习)2018高清完整资源