DBUtil

package com.seemygo.shop.cloud.util;

import java.sql.Connection;
import java.sql.DriverManager;

public class DBUtil {
    public static Connection getConn() throws Exception{
        String url = "jdbc:mysql://localhost:3306/wolfcode_member?serverTimezone=GMT%2B8";
        String username = "root";
        String password = "huqinghe";
        String driver = "com.mysql.jdbc.Driver";
        Class.forName(driver);
        return DriverManager.getConnection(url,username, password);
    }
}

 

posted @ 2021-12-10 15:18  白芷100  阅读(34)  评论(0)    收藏  举报