文章目录
- @RequestMapping
-
- 1. URL路径映射
- 2. 添加在类上面
- 3. 请求方法限定
-
- 限定GET方法
- 限定POST方法
- GET和POST都可以
- Controller方法返回值
-
- 1. 返回ModelAndView
- 2. 返回void
- 3. 返回String
-
- controller方法返回字符串可以指定逻辑视图名,通过视图解析器解析为物理视图地址。
- Contrller方法返回字符串可以重定向到一个url地址
- Controller方法执行后 转发 执行另一个Controller方法
@RequestMapping
通过@RequestMapping注解可以定义不同的处理器映射规则。
1. URL路径映射
@RequestMapping(value=“item”)或@RequestMapping("/item")
value的值是数组,可以将多个url映射到同一个方法
/**
* 查询商品列表
* @return
*/
@RequestMapping(value = { "itemList", "itemListAll" })
public ModelAndView queryItemList() {
// 查询商品数据
List<Item> list = this.itemService.queryItemList();
// 创建ModelAndView,设置逻辑视图名
ModelAndView mv = new ModelAndView("itemList");
// 把商品数据放到模型中
mv.addObject("itemList", list);
return mv;
}
2. 添加在类上面
在class上添加@RequestMapping(url)指定通用请求前缀, 限制此类下的所有方法请求url必须以请求前缀开头
可以使用此方法对url进行分类管理
此时需要进入queryItemList()方法的请求url为:
http://localhost:8080/springmvc-web2/item/itemList.action
或者 http://localhost:8080/springmvc-web2/item/itemListAll.action
@Controller
@RequestMapping("item")
public class ItemController {
@Autowired
private ItemService itemService;
/** * 查询商品列表 * * @return */ T
@RequestMapping(value ={"itemlist", "itemListAll"})
public ModelAndView queryItemList() {
//查询商品数据
List<Item> list = this.itemService.queryItemList()
}
3. 请求方法限定
除了可以对url进行设置,还可以限定请求进来的方法
限定GET方法
@RequestMapping(method = RequestMethod.GET)
如果通过POST访问则报错:
HTTP Status 405 - Request method ‘POST’ not supported
例如:
限定POST方法
@RequestMapping(method = RequestMethod.POST)
如果通过GET访问则报错:
HTTP Status 405 - Request method ‘GET’ not supported
GET和POST都可以
@RequestMapping(method = {RequestMethod.GET,RequestMethod.POST})
Controller方法返回值
1. 返回ModelAndView
controller方法中定义ModelAndView对象并返回,对象中可添加model数据、指定view。
@Controller
public class ItemController {
// action可以写也可以不写
@RequestMapping("/itemList.action")
public ModelAndView queryItemList() {
// 创建页面需要显示的商品数据
List<Item> list = new ArrayList<>();
list.add(new Item(1, "1华为 荣耀8", 2399, new Date(), "质量好!1"));
list.add(new Item(2, "2华为 荣耀8", 2399, new Date(), "质量好!2"));
// 创建ModelAndView,用来存放数据和视图
ModelAndView modelAndView = new ModelAndView();
// 设置数据到模型中 --model数据
modelAndView.addObject("itemList", list);
// 设置视图jsp,需要设置视图的物理地址 --view视图
modelAndView.setViewName("itemList");
return modelAndView;
}
}
2. 返回void
在Controller方法形参上可以定义request和response,使用request或response指定响应结果:
-
使用request转发页面,如下:
request.getRequestDispatcher(“页面路径”).forward(request, response);
-
可以通过response页面重定向:
response.sendRedirect(“url”)
-
可以通过response指定响应结果,例如响应json数据如下:
response.getWriter().print("{“abc”:123}");
/**
* 返回void测试
* @param request
* @param response
* @throws Exception
*/
@RequestMapping("queryItem")
public void queryItem(HttpServletRequest request, HttpServletResponse response) throws Exception {
// 1 使用request进行转发
request.getRequestDispatcher("/WEB-INF/jsp/success.jsp").forward(request, response);
// 2 使用response进行重定向到编辑页面
response.sendRedirect("/springmvc-web2/itemEdit.action");
// 3 使用response直接显示
response.getWriter().print("{\"abc\":123}");
)
3. 返回String
controller方法返回字符串可以指定逻辑视图名,通过视图解析器解析为物理视图地址。
//指定逻辑视图名,经过视图解析器解析为jsp物理路径:/WEB-INF/jsp/itemList.jsp
@RequestMapping("Item")
public void Item(){
return "itemList";
}
Contrller方法返回字符串可以重定向到一个url地址
如下商品修改提交后重定向到商品编辑页面。
/**
* 更新商品
*
* @param item
* @return
*/
@RequestMapping("updateItem")
public String updateItemById(Item item) {
// 更新商品
this.itemService.updateItemById(item);
// 修改商品成功后,重定向到商品编辑页面
// 重定向后浏览器地址栏变更为重定向的地址,
// 重定向相当于执行了新的request和response,所以之前的请求参数都会丢失
// 如果要指定请求参数,需要在重定向的url后面添加 ?itemId=1 这样的请求参数
return "redirect:/itemEdit.action?itemId=" + item.getId();
}
Controller方法执行后 转发 执行另一个Controller方法
如下商品修改提交后转向到商品修改页面,修改商品的id参数可以带到商品修改方法中。
/**
* 更新商品
* @param item
* @return
*/
@RequestMapping("updateItem")
public String updateItemById(Item item) {
// 更新商品
this.itemService.updateItemById(item);
// 修改商品成功后,转发到商品编辑页面
return "forward:/itemEdit.action";
}
//结果转发到editItem.action,request可以带过去
return "forward: /itemEdit.action";