java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
bug产生原因:权限问题
解决方法:授权给root用户所有sql权限
在Navicate软件中,按F6进入命令列界面,执行两个命令:
mysql> grant all privileges on *.* to root@"%" identified by ".";
mysql> flush privileges;
成功之后的效果:
还没有评论,来说两句吧...