创建本地mysql,运行项目时出现
The user specified as a definer ('root'@'%') does not exist。
解决方法如下
打开运行-->输入CMD;
输入
mysql -u root -p
然后输入密码 进入mysql
执行如下操作即可
mysql >grant all privileges on *.* to root@"%" identified by "Passwd" ;
mysql >flush privileges;