xuqiang

 /**
    *
    * @param address
    * @param request
    * @param response
    * @throws ServletException
    * @throws IOException
    */
   private void gotoPage(String address, HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException
   {

      System.out.println("address = " + address);

      RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(address);
      dispatcher.forward(request, response);
   }

分类:

技术点:

相关文章:

  • 2021-10-12
  • 2021-12-05
  • 2021-12-18
  • 2021-06-28
  • 2021-11-17
  • 2021-12-15
  • 2021-12-05
  • 2021-04-09
猜你喜欢
  • 2021-12-05
  • 2021-09-25
  • 2021-05-23
  • 2021-09-25
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
相关资源
相似解决方案