springmvc controller传值

springmvc  controller之间是不能直接方法调用,一定要用redirect调转。

springmvc  controller之间传值有两种方式,

1.一种用的是RedirectAttributes rattr   rattr.addFlashAttribute("message", result.getMessage());  然后通过redirect跳转,接收controller方法也要加上RedirectAttributes 参数  才能获取

2.另一种是 "redirect:/killDetailShow.htm?goodsId="+ticketBean.getGoodsId()+"&ticketId="+ticketBean.getId();直接在url带参数

你可能感兴趣的:(ssh学习)