Spring MVC学习之——Controller类中方法的返回值

Controller类中方法的返回值

1.返回ModelAndView

java 复制代码
 	@RequestMapping("/hello")
    public ModelAndView hello(){
        //封装了页面和数据
        ModelAndView view = new ModelAndView();
        //对这个请求的页面添加属性(数据)
        view.addObject("hello","Hello,欢迎成功进入!");
        //设置内容显示的页面
        view.setViewName("success");
        return view;
    }

2.返回字符串

2.1逻辑视图名

  • 说明:controller方法返回字符串可以指定逻辑视图名,通过视图解析器解析为物理视图地址。

  • 返回字符串

java 复制代码
	@GetMapping("/hello")
    public String hello(Model model){
        model.addAttribute("hello","Hello,欢迎成功进入!");
        return "success";
    }

2.2Redirect重定向

说明:

  • Contrller方法返回结果重定向到一个url地址,如下商品修改提交后重定向到商品查询方法,参数无法带到商品查询方法中。
  • redirect方式相当于"response.sendRedirect()",转发后浏览器的地址栏变为转发后的地址,因为转发即执行了一个新的request和response。
  • 由于新发起一个request原来的参数在转发时就不能传递到下一个url,如果要传参数可以/item/queryItem后边加参数,如下:/item/queryItem?...&.....
java 复制代码
	@GetMapping("/account/findAccount")
    public String findAccount3(){
        return "redirect:/account/findAll";
    }
    @GetMapping("/account/findAll")
    public String findAll(Model model){
        model.addAttribute("hello","Hello,欢迎成功进入!");
        return "success";
    }

2.3Forward转发

说明:

  • controller方法执行后继续执行另一个controller方法,如下商品修改提交后转向到商品查询页面,修改商品的id参数可以带到商品查询方法中。
  • forward方式相当于request.getRequestDispatcher().forward(request,response),转发后浏览器地址栏还是原来的地址。转发并没有执行新的request和response,而是和转发前的请求共用一个request和response。所以转发前请求的参数在转发后仍然可以读取到。
java 复制代码
@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";
    }
}
相关推荐
是小崔啊1 小时前
开源轮子 - EasyExcel02(深入实践)
java·开源·excel
myNameGL1 小时前
linux安装idea
java·ide·intellij-idea
青春男大1 小时前
java栈--数据结构
java·开发语言·数据结构·学习·eclipse
HaiFan.2 小时前
SpringBoot 事务
java·数据库·spring boot·sql·mysql
我要学编程(ಥ_ಥ)2 小时前
一文详解“二叉树中的深搜“在算法中的应用
java·数据结构·算法·leetcode·深度优先
music0ant2 小时前
Idea 添加tomcat 并发布到tomcat
java·tomcat·intellij-idea
mashagua2 小时前
RPA系列-uipath 学习笔记3
笔记·学习·rpa
计算机徐师兄3 小时前
Java基于SSM框架的无中介租房系统小程序【附源码、文档】
java·微信小程序·小程序·无中介租房系统小程序·java无中介租房系统小程序·无中介租房微信小程序
源码哥_博纳软云3 小时前
JAVA智慧养老养老护理帮忙代办陪诊陪护小程序APP源码
java·开发语言·微信小程序·小程序·微信公众平台
沐泽Mu3 小时前
嵌入式学习-QT-Day05
开发语言·c++·qt·学习