JDBC第一学之进行数据库连接时出现The server time zone.....解决办法

学习JDBC进行数据库连接时总会出现各种各样的问题:
当使用DriverManager.getConnection(url, username, password);//获取数据库连接时出现The server time zone…问题时可将其中的url填写为**“jdbc:mysql://localhost:3306/jdbc?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true”;**
如:
String url="jdbc:mysql://localhost:3306/jdbc?serverTimezone=CTT&useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true";//数据库驱动

你可能感兴趣的:(JDBC第一学之进行数据库连接时出现The server time zone.....解决办法)