0

在我的 Web 应用程序中,负载均衡器通过参数向我发送客户端的 IP 地址。我可以在 authSuccess 和 authFail 类中处理它,如下所示。从请求中获取参数。

对于 fotgotPassword 页面,我想处理负载均衡器发送的客户端 IP。但是这个页面请求从来没有被 authListeners 处理过。永远不需要身份验证。

 @Override
        public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response, Authentication authentication) throws IOException, ServletException {
//request.get...
    }

如何从不需要任何身份验证的其他页面的请求中获取参数?

4

0 回答 0