@RequestMapping放在类名上边,设置请求前缀。
@RequestMapping放在方法名上边,设置请求url。
1.使用request进行请求转发,有下一个action来响应。
request.getRequestDispatcher("页面路径").forward(request, response);
2.也可通过response页面重定向,让浏览器自己重新请求另一个url:
response.sendRedirect("url")
3.也可以通过response指定响应结果
response.setCharacterEncoding("utf-8");
response.setContentType("application/json;charset=utf-8");
response.getWriter().write("json串");