注意针对mysql 8.0以上
在使用jdbc的时候,jdbc的路径为"com.mysql.cj.jdbc.Driver"
使用连接的时候(getConnection中):
"jdbc:mysql:"+/*jdbc:指定特定的数据库*/
"//localhost:3306"+/*端口*/
"/shop"+/*数据库名称*/
"?useSSL=false&serverTimezone=UTC"/*这部分一定要使用*/
2022-07-31 18:34:17
在使用jdbc的时候,jdbc的路径为"com.mysql.cj.jdbc.Driver"
使用连接的时候(getConnection中):
"jdbc:mysql:"+/*jdbc:指定特定的数据库*/
"//localhost:3306"+/*端口*/
"/shop"+/*数据库名称*/
"?useSSL=false&serverTimezone=UTC"/*这部分一定要使用*/