0


Spring MVC 的controller方法返回值

controller方法返回值

返回ModelAndView

  • 说明:controller方法中定义ModelAndView对象并返回,对象中可添加model数据、指定view

返回字符串

逻辑视图名

  • 说明:controller方法返回字符串可以指定逻辑视图名,通过视图解析器解析为物理视图地址。
  • 返回字符串@Controller@RequestMapping("/account")public class AccountController { @RequestMapping(value = "/findAccount2") public String findAccount2(Model model) { //添加数据 model.addAttribute("msg", "欢迎你 springmvc"); return "success"; }}
  • 在index.jsp里面定义超链接<a href="/account/findAccount2">返回字符串</a>

Redirect重定向

  • 说明:- Contrller方法返回结果重定向到一个url地址,如下商品修改提交后重定向到商品查询方法,参数无法带到商品查询方法中。- redirect方式相当于“response.sendRedirect()”,转发后浏览器的地址栏变为转发后的地址,因为转发即执行了一个新的request和response。- 由于新发起一个request原来的参数在转发时就不能传递到下一个url,如果要传参数可以/item/queryItem后边加参数,如下:/item/queryItem?...&…..
  • 重定向@Controller@RequestMapping("/account")public class AccountController { @RequestMapping(value = "/findAccount3") public String findAccount3() { return "redirect:/account/findAccount4"; }​ @RequestMapping(value = "/findAccount4") public String findAccount4(Model model) { //添加数据 model.addAttribute("msg", "这是springmvc的重定向"); return "success"; }}
  • 在index.jsp里面定义超链接<a href="/account/findAccount3">重定向</a>

forward转发

  • 说明:- controller方法执行后继续执行另一个controller方法,如下商品修改提交后转向到商品查询页面,修改商品的id参数可以带到商品查询方法中。- forward方式相当于request.getRequestDispatcher().forward(request,response),转发后浏览器地址栏还是原来的地址。转发并没有执行新的request和response,而是和转发前的请求共用一个request和response。所以转发前请求的参数在转发后仍然可以读取到。
  • 重定向@Controller@RequestMapping("/account")public class AccountController { @RequestMapping(value = "/findAccount3") public String findAccount3() { return "forward:/account/findAccount4"; }​ @RequestMapping(value = "/findAccount4") public String findAccount4(Model model) { //添加数据 model.addAttribute("msg", "这是springmvc的重定向"); return "success"; }}
  • 在index.jsp里面定义超链接<a href="/account/findAccount3">重定向和请求转发</a>
标签: spring mvc

本文转载自: https://blog.csdn.net/jyx_boy/article/details/135513806
版权归原作者 jyx_boy 所有, 如有侵权,请联系我们删除。

“Spring MVC 的controller方法返回值”的评论:

还没有评论