我们的应用程序在 WebLogic 上运行。
在某些时候,WebLogic 会重定向到 Apache 以允许用户访问 PDF 文件。
这通过以下方式发生:
final String encodedURL = resp.encodeRedirectURL(redirectURL);
resp.sendRedirect(encodedURL); //ok here because redirection to other server and not to itself
问题是 WebLogic 将 JSESSIONID 附加到 URL 并且 apache 无法提供 PDF 文档。
如何防止 WebLogic 将 JSESSIONID 添加到 URL?