Send redirect to relative path in JSP?

Borut Flis picture Borut Flis · Jun 7, 2012 · Viewed 32.7k times · Source
response.sendRedirect("../seja/izpisknjig.jsp");

the file in which I execute this line is index.jsp. the directory structure looks like this.
project
--index.jsp
seja
--izpisknjig.jsp

How do I form the relative path to redirect to izpisknjig.jsp.

Answer

BalusC picture BalusC · Jun 8, 2012

Most reliable would be to create a domain-relative URL with the context path included.

response.sendRedirect(request.getContextPath() + "/seja/izpisknjig.jsp");