spring mvc 在controller层 无返回值 怎么还能跳转到页面上去 5
@RequestMapping("roleRight")publicvoidroleRight(IntegerroleId,Modelmodel){model.addAt...
@RequestMapping("roleRight")
public void roleRight(Integer roleId, Model model) {
model.addAttribute("roleId", roleId);
}
跳转到了roleRight.jsp 展开
public void roleRight(Integer roleId, Model model) {
model.addAttribute("roleId", roleId);
}
跳转到了roleRight.jsp 展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
1个回答
2015-03-03
展开全部
public void roleRight(Integer roleId, Model model,HttpServletResponse response,HttpServletRequest request){
model.addAttribute("roleId", roleId);
// response.sendRedirect("success.jsp"); //重定向
request.getRequestDispatcher("success.jsp").forward(request,response);
}
model.addAttribute("roleId", roleId);
// response.sendRedirect("success.jsp"); //重定向
request.getRequestDispatcher("success.jsp").forward(request,response);
}
追问
可是这个方法 并没有重新定向啊!这个方法 只有这些内容 哦对了少了个@RequestMapping("roleRight")
也就是绑定了一个id 但是我直接请求这个roleRight.do 的时候就可以跳转到 roleRight.jsp上 奇怪啊
追答
没太明白你想做什么。
成功跳转就行了吧、
而且为什么要写void呢
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询