• JDBC_JDBCUtils1.0


    package cn.JDBCUtils.com;
    
    import java.io.InputStream;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import java.util.Properties;
    
    public class JDBCUtils {
        private static Properties  props =null;
        static{
            try{
                InputStream in = JDBCUtils.class.getClassLoader()
                                .getResourceAsStream("dbconfig.properties");
                props = new Properties();
                props.load(in);}catch(Exception e){
                    throw new RuntimeException();
                }
            try{
                Class.forName(props.getProperty("driverClassName"));
            }catch (Exception e) {
                throw new RuntimeException();
            }
            
        }
        public static Connection getConnection() throws SQLException{
            /*
             * 1、加载配置文件
             * 2、加载驱动类
             * 3、调用DriverManager.getConnection()
             * */
            return DriverManager.getConnection(props.getProperty("url"),props.getProperty("username"), props.getProperty("password"));
            
        }
    }

    //四大参数.propertise

    driverClassName=com.mysql.jdbc.Driver
    url=jdbc:mysql://127.0.0.1:3306/mydb1
    username=root
    password=123
  • 相关阅读:
    Vue知识总结
    Excel使用技巧
    java框架总结
    java反射学习总结
    java虚拟机
    vue学习知识
    mysql索引知识
    前端函数定义及表格总结
    SpringMVC异常处理
    restful风格的概念
  • 原文地址:https://www.cnblogs.com/wangyinxu/p/7428161.html
Copyright © 2020-2023  润新知