重定向与转发的写法

重定向:

public void response.sendRedirect(String location)
throws IOException 

举例:
resp.sendRedirect("/wedding/houtai/News/index.jsp");

转发:举例:
req.getRequestDispatcher("/houtai/News/index.jsp").forward(req, resp);

urlPatterns="/action/NewsListAction"
原文地址:https://www.cnblogs.com/1446358788-qq/p/4731987.html