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); } }
浙公网安备 33010602011771号