4.Spring MVC的数据响应

这里写目录标题

    • 4.Spring MVC的数据响应
      • 4.1 SpringMVC的数据响应方式
      • 4.2 页面跳转
      • 4.3 回写数据
      • 4.4 知识要点

4.Spring MVC的数据响应

4.1 SpringMVC的数据响应方式

1) 页面跳转
 直接返回字符串
 通过ModelAndView对象返回

2) 回写数据
 直接返回字符串
 返回对象或集合

4.2 页面跳转

1.返回字符串形式

直接返回字符串:此种方式会将返回的字符串与视图解析器的前后缀拼接后跳转。

4.Spring MVC的数据响应_第1张图片

返回带有前缀的字符串:
转发:forward:/WEB-INF/views/index.jsp
重定向:redirect:/index.jsp

2.返回ModelAndView对象

 @RequestMapping("/quick2")
        public ModelAndView save2(){
            /**
             * Model:模型。封装数据
             * View:视图,展示数据
             */
            ModelAndView modelAndView = new ModelAndView();
            //设置Model数据
            modelAndView.addObject("username","zhangsan");
            //设置视图名称
            modelAndView.setViewName("/success.jsp");
            return modelAndView;
        }

3.向request域存储数据

在进行转发时,往往要向request域中存储数据,在jsp页面中显示,那么Controller中怎样向request
域中存储数据呢?

① 通过SpringMVC框架注入的request对象setAttribute()方法设置

 @RequestMapping("/quick5")
    public String save5(HttpServletRequest request){
        request.setAttribute("username","张三丰");
        return "success.jsp";
    }

② 通过ModelAndView的addObject()方法设置

 @RequestMapping("/quick4")
    public String save4(Model model){
        model.addAttribute("username","wangwu");
        return "success.jsp";
    }

4.3 回写数据

  1. 直接返回字符串

Web基础阶段,客户端访问服务器端,如果想直接回写字符串作为响应体返回的话,只需要使用
response.getWriter().print(“hello world”) 即可,那么在Controller中想直
接回写字符串该怎样呢?

① 通过SpringMVC框架注入的response对象,使用response.getWriter().print(“hello world”) 回写数
据,此时不需要视图跳转,业务方法返回值为void。

  @RequestMapping("/quick6")
    public void save6(HttpServletResponse response) throws IOException {
        response.getWriter().print("hello Spring MVC");
    }

② 将需要回写的字符串直接返回,但此时需要通过@ResponseBody注解告知SpringMVC框架,方法
返回的字符串不是跳转是直接在http响应体中返回。

@RequestMapping("/quick7")
    @ResponseBody //告知SpringMVC框架该方法不进行视图跳转,直接进行数据响应
    public String save7() {
        return "hello Spring MVC";
    }

在异步项目中,客户端与服务器端往往要进行json格式字符串交互,此时我们可以手动拼接json字符串返回。

  @RequestMapping("/quick8")
    @ResponseBody //告知SpringMVC框架该方法不进行视图跳转,直接进行数据响应
    public String save8() {
        return "{\"username\":\"张三\",\"age\":18}";
    }

上述方式手动拼接json格式字符串的方式很麻烦,开发中往往要将复杂的java对象转换成json格式的字符串,
我们可以使用json转换工具jackson进行转换,导入jackson坐标。

 <dependency>
            <groupId>com.fasterxml.jackson.coregroupId>
            <artifactId>jackson-coreartifactId>
            <version>2.12.4version>
        dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.coregroupId>
            <artifactId>jackson-databindartifactId>
            <version>2.12.4version>
        dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.coregroupId>
            <artifactId>jackson-annotationsartifactId>
            <version>2.12.4version>
        dependency>

通过jackson转换json格式字符串,回写字符串。

@RequestMapping("/quick9")
    @ResponseBody //告知SpringMVC框架该方法不进行视图跳转,直接进行数据响应
    public String save9() throws JsonProcessingException {
        User user = new User();
        user.setUsername("李四");
        user.setAge(20);
        //使用json的转换工具将对象转换成json格式字符串再返回
        ObjectMapper objectMapper = new ObjectMapper();
        String json = objectMapper.writeValueAsString(user);
        return json;
    }
  1. 返回对象或集合

通过SpringMVC帮助我们对对象或集合进行json字符串的转换并回写,为处理器适配器配置消息转换参数,
指定使用jackson进行对象或集合的转换,因此需要在spring-mvc.xml中进行如下配置:

 
     <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
        <property name="messageConverters">
            <list>
                <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">bean>
            list>
        property>
    bean>

在SpringMVC配置文件中配置好处理映射器后,就可以自动将返回对象转换成JSON格式得了

 @RequestMapping("/quick10")
    @ResponseBody //告知SpringMVC框架该方法不进行视图跳转,直接进行数据响应
    //期望SpringMVC自动将User转换成
    public User save10(){
        User user = new User();
        user.setUsername("李四");
        user.setAge(20);
        return user;
    }

在方法上添加@ResponseBody就可以返回json格式的字符串,但是这样配置比较麻烦,配置的代码比较多,
因此,我们可以使用mvc的注解驱动代替上述配置。


    <mvc:annotation-driven>mvc:annotation-driven>

在 SpringMVC 的各个组件中,处理器映射器、处理器适配器、视图解析器称为 SpringMVC 的三大组件。
使用mvc:annotation-driven自动加载 RequestMappingHandlerMapping(处理映射器)和
RequestMappingHandlerAdapter( 处 理 适 配 器 ),可用在Spring-xml.xml配置文件中使用
mvc:annotation-driven替代注解处理器和适配器的配置。
同时使用mvc:annotation-driven默认底层就会集成jackson进行对象或集合的json格式字符串的转换。

4.4 知识要点

SpringMVC的数据响应方式
1) 页面跳转
 直接返回字符串
 通过ModelAndView对象返回
2) 回写数据
 直接返回字符串
 返回对象或集合

你可能感兴趣的:(#,SpringMVC,mvc,spring,java)