是否可以从背面调用.jsp中的函数?

问题描述 投票:0回答:1

我捕获了一个URL :(示例)

https://lol.com/question2

在.jsp中的变量中,然后我必须登录并在后面,在验证登录名正确之后,我将页面重定向到应用程序的主目录,但是我想要的是将其重定向我在登录之前捕获的URL。当要重定向该变量时,是否可以在后面捕获该变量?就像从后面调用函数一样,以便返回URL?

这是我重定向的功能:

protected void handle(HttpServletRequest request, 
  HttpServletResponse response, Authentication authentication) throws IOException {
    var urlNew = functionToCaptureURL();

    redirectStrategy.sendRedirect(urlNew);
    //redirectStrategy.sendRedirect("https://lol.com/home");
}
javascript java jsp url redirect
1个回答
0
投票

使用RequestDispatcher::forward代替sendRedirect。勾选Difference between JSP forward and redirect了解更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.