Passing data from servlet to another servlet using RequestDispatcher

為{幸葍}努か 提交于 2019-11-30 20:27:12

You just need to pass servlet-mapping 's url-pattern in the getRequestDispatcher.

Let say your servlet mapping is "myMap" for the "MapOut" Servlet in the web.xml.Then it should be

RequestDispatcher dispatcher = request.getRequestDispatcher("/myMap");
dispatcher.forward(request,response);

doGet() of forwarded Servlet will be called.

Example: web.xml

      <servlet>
        <description></description>
        <servlet-name>MapOut</servlet-name>
        <servlet-class>coreservlets.MapOut</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>MapOut</servlet-name>
        <url-pattern>/myMap</url-pattern> <!-- You can change this-->
      </servlet-mapping>

You can directly write your name of the servlet in request.getRequestDispatcher("your servlet name"); it will fetch the path according to the web.xml configuration.

RequestDispatcher rd= request.getRequestDispatcher("MyServletName");
rd.forward(request,response);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!