How do I get the previous page URL from request using a servlet. For example, I'm from the index.html and I submitted a form from index, how do I get the index.html URL and use it in a servlet?
request.getRequestURL()
getRequestURL doesn't work since it only returns the URL of the servlet.
Write in your Servlet the following code
String url = request.getHeader("referer");
This worked in my case.Hope it works for you as well
I think request.getAttribute("javax.servlet.forward.request_uri") this works.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With