我使用以下代码身份验证:
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception {
......
}
我如何用Spring Security重写代码以获得相同的结果?
答案 0 :(得分:1)
您应该使用Spring Security来管理身份验证和授权。似乎您已为其使用HandlerInterceptor,这是不推荐的。
https://www.baeldung.com/spring-boot-security-autoconfiguration