之后从servlet中的请求中获取上一页的URL

之后从servlet中的请求中获取上一页的URL

本文介绍了如何在dispatcher.forward(request, response)之后从servlet中的请求中获取上一页的URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 servlet,它在

I'm using the servlet which redirects me with the help of

dispatcher.forward(request, response);

最后.但在此之后,我想获取我被重定向到的页面(路径)以在下一个 servlet 命令中使用它(转到上一页).我怎么能得到它?或者之前的 URL 不包含在请求参数中,我应该自己添加它?将非常感谢您的帮助.

in the end. But after this I want to get the page(path) from which I was redirected to use it in next servlet command(to go to previous page). How could I get it?Or previous URL is not contained in request parameters and I should add it myself?Will be very grateful for your help.

推荐答案

尝试使用

request.getAttribute("javax.servlet.forward.request_uri")


https://tomcat.apache.org/tomcat-9.0-doc/servletapi/constant-values.html

如何获取客户端的url

这篇关于如何在dispatcher.forward(request, response)之后从servlet中的请求中获取上一页的URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 20:15