天天看點

Mysql異常: java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist

權限問題,授權給 root 所有sql 權限

在Navicat for MySQL中按F6進入指令列界面

mysql> grant all privileges on . to root@"%" identified by ".";

mysql> flush privileges;

繼續閱讀