一Timezone问题
找到mysql配置文件,mysql.ini,在[mysql]下加入default-time-zone='+08:00'
在数据源配置上添加timezone,jdbc:mysql://localhost:3306/jpaLearn?serverTimezone=UTC
二无法进行远程连接
打开mysql命令行
use mysql
update user set host='%' where user='root'
GRANT ALL PRIVILEGES ON '*.*' TO 'root@%' IDENTIFIED BY '[pwd]' WITH GRANT OPTION
flush privileges
然后重启mysql服务
网友评论