页面跳转的两种实现方式 详解

####页面跳转的两种实现方式:
reponse.sendRedirect("wel.jsp"):    叫做转向,停顿重新发送请求,request中对象丢失,效率低
reponse.getResquestDispatcher(“wel.jsp”).forward(request, response): 叫转发方法,效率高,request中对象还可以在下一个页面使用!

你可能感兴趣的:(页面跳转的两种实现方式 详解)