改善认证

时间:2018-08-31 16:23:32

标签: java spring spring-boot spring-security

我使用以下代码身份验证:

@Override
    public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
            throws Exception {
        ......
    }

我如何用Spring Security重写代码以获得相同的结果?

1 个答案:

答案 0 :(得分:1)

您应该使用Spring Security来管理身份验证和授权。似乎您已为其使用HandlerInterceptor,这是不推荐的。

https://www.baeldung.com/spring-boot-security-autoconfiguration