如何使用相对URL从Servlet调用JSP文件

时间:2019-05-31 15:11:57

标签: jsp servlets

我是初学者,需要一些帮助。 我在需要传递网址的地方有具体要求。该URL应该调用一个jsp,我可以在其中处理结果并重定向到其他servlet。

我已经将jsp映射到了servlet-mapping标签下的web.xml中。 在我的servlet中,我尝试使用相对网址调用jsp,如下所示。

我在doGet()中提到了我到底想要什么,但无法继续。

任何帮助将不胜感激。

<servlet-name>TestServlet</servlet-name>
<jsp-file>/index.jsp</jsp-file>

<servlet-name>TestServlet</servlet-name>
<url-pattern>/jsp/index.jsp</url-pattern> 

protected void doGet( HttpServletRequest request, HttpServletResponse response )
throws ServletException, IOException
{
 String url = "/jsp/index.jsp";

// now my requirement is to invoke this url from anywhere inside my      program or any other servlet.
}

我的要求是能够在我的程序或任何其他servlet中调用提到的url。

任何帮助将不胜感激。

非常感谢。

0 个答案:

没有答案