util层

util层,第1张

BaseDao.java主要实现代码
public class baseDao {
    public static Connection getConnections(){
        Connection con=null;
        try {
            Class.forName("com.mysql.jdbc.Driver");
//            jdbc:mysql://localhost:3306/servletcrud
            con = DriverManager.getConnection("jdbc:mysql://localhost:3306/servletcrud", "root", "root");
            System.out.println("获取到连接啦~");
        } catch (ClassNotFoundException e) {
            e.printStackTrace();
        } catch (SQLException throwables) {
            throwables.printStackTrace();
        }
        return con;
    }
}

//笔记

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/870479.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存