MySQL 5版本 驱动类使用:
com.mysql.jdbc.Driver
MySQL 8版本 驱动类使用:
com.mysql.cj.jdbc.Driver
MySQL 5版本的url:
jdbc:mysql://localhost:3306/ssm
jdbc:mysql://localhost:3306/ssm?useUnicode=true&useSSL=false&characterEncoding=utf8
MySQL 8版本的url:
jdbc:mysql://localhost:3306/ssm?serverTimezone=CST
大炸烩:
jdbc:mysql://localhost:3306/ssm?serverTimezone=CST&useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false&rewriteBatchedStatements=true
tip:&rewriteBatchedStatements=true 后面加上可以提高性能