错误com.mysql.cj.exceptions.CJException: Access denied for user ‘root‘@‘%‘ to database ‘xdu_sxpp‘

需要授权数据库操作

grant all on xxx.* to ‘root’@’%’ identified by ‘password’ with grant option;

其中:xxx代表创建的数据库; password为用户密码,在此为root的密码。

你可能感兴趣的:(java,java,mysql)