赞
踩
1、安装mysql,确保电脑中有sql数据库;
2、在‘服务’中开启mysql;
3、将mysql-connector-java-8.0.16.jar包放入web/WEB-INF/lib并配置;
4、确认个人sql所用端口,用户名,密码正确。
- //建立连接
-
- public class DBUtil {
- private static Connection conn = null;
-
- public static Connection getConnection() {
- String url =
- "jdbc:mysql://localhost:3306(个人端口)/mydb?serverTimezone=UTC&useSSL=false";
- //与创建数据库的代码结合,保证访问数据库时不出现乱码
- String username = "root(个人用户名)";
- String password = "******(个人密码)";
- try {
- Class.forName("com.mysql.cj.jdbc.Driver");// 加载数据库驱动
- } catch (ClassNotFoundException e) {
- e.printStackTrace();
- }
- if (conn == null)
- try {
- conn = DriverManager.getConnection(url, username, password);//建立连接
- } catch (SQLException e) {
- e.printStackTrace();
- System.out.print("数据库连接失败!");
- }
- return conn;
- }
- }
end~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。