org.apache.shiro.authc.AuthenticationException: Authentication failed for token submission [org.apache.shiro.authc.UsernamePasswordToken - yangwenhao, rememberMe=false]. Possible unexpected error? (Typical or expected login exceptions should extend from AuthenticationException).
时间: 2024-01-20 12:38:31 浏览: 230
shiro实现授权登陆验证
根据你提供的日志信息,看起来系统正在使用 Shiro 认证框架进行用户身份认证。在这个过程中,Shiro 抛出了一个 AuthenticationException 异常,表示身份验证失败。具体来说,系统尝试使用用户名和密码进行身份验证,但是这个过程失败了。这可能是因为提供的用户名或密码不正确,或者目标系统出现了故障或其他错误。需要进一步检查系统的配置和日志以确定问题的根本原因。
阅读全文