"Login Failed: A granted authority textual representation is required"

在使用Spring Security配置用户登录时,在测试数据中添加用户信息

username="hlw"

password="hlw"

role=""

 

在测试页面登录时出现错误提示"Login Failed: A granted authority textual representation is required"

 

错误原因:没有给role赋值,即role不能为空

解决方法:给role赋值,例如role=”guest“

你可能感兴趣的:(java)