我可以验证用户
Authentication request = new UsernamePasswordAuthenticationToken(this.username, this.password);
Authentication result = authenticationManager.authenticate(request);
SecurityContextHolder.getContext().setAuthentication(result);
现在我必须选择 user.status 字段为“活动”的用户。
我想我可以在上面检查状态字段的代码之前放几行,
但我也认为如果我可以让 Spring Security 为我做这件事,它会更加优雅和整洁。
但是我不知道如何通过覆盖某些类或某些方法来让 SS 为我做这件事?
感谢您的建议。