• SpringMVC的数据响应


    一、SpringMVC的数据响应方式

    1、 页面跳转

    ①返回字符串

    ②通过ModelAndView对象返回

    2、回写数据

    ①直接返回字符串

    ②返回对象或集合

    二、页面跳转

    1、返回字符串

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

     

    ② 返回带有前缀的字符串,不再拼接上面的前后缀,用于指定页面跳转的途径:

    转发:forward:/WEB-INF/views/index.jsp

    重定向:redirect:/index.jsp

    2、通过ModelAndView对象返回

    ①在方法中创建ModelAndView

    1. @RequestMapping(value="/quick2")
    2. public ModelAndView save2(){
    3. /*
    4. Model:模型 作用封装数据
    5. View:视图 作用展示数据
    6. */
    7. ModelAndView modelAndView = new ModelAndView();
    8. //设置模型数据
    9. modelAndView.addObject("username","itcast");
    10. //设置视图名称
    11. modelAndView.setViewName("success");
    12. return modelAndView;
    13. }

    ②设置方法参数为ModelAndView类型 

    1. @RequestMapping(value="/quick3")
    2. public ModelAndView save3(ModelAndView modelAndView){
    3. modelAndView.addObject("username","itheima");
    4. modelAndView.setViewName("success");
    5. return modelAndView;
    6. }

    ③设置方法参数类型为Model,返回值为String

    1. @RequestMapping(value="/quick4")
    2. public String save4(Model model){
    3. model.addAttribute("username","博学谷");
    4. return "success";
    5. }

    3、向request域存储数据

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

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

    1. @RequestMapping("/quick5")
    2. public String quickMethod(HttpServletRequest request){
    3. request.setAttribute("name","zhangsan");
    4. return "index";
    5. }
    ② 通过ModelAndView的addObject()方法设置,待考证。。。。。。。。。。。。。。。
    1. @RequestMapping("/quick6")
    2. public ModelAndView quickMethod3(){
    3. ModelAndView modelAndView = new ModelAndView();
    4. modelAndView.setViewName("forward:/WEB-INF/views/index.jsp");
    5. modelAndView.addObject("username","lisi");
    6. return modelAndView;
    7. }

    三、回写数据

    1、直接返回字符串

    Web基础阶段,客户端访问服务器端,如果想直接回写字符串作为响应体返回的话,只需要使用

    response.getWriter().print(“hello world”) 即可,那么在Controller中想直接回写字符串该怎样呢?

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

    1. @RequestMapping(value="/quick6")
    2. public void save6(HttpServletResponse response) throws IOException {
    3. response.getWriter().print("hello itcast");
    4. }

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

    1. @RequestMapping(value="/quick7")
    2. @ResponseBody //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    3. public String save7() throws IOException {
    4. return "hello itheima";
    5. }

    ③返回json格式字符串

    在异步项目中,客户端与服务器端往往要进行json格式字符串交互,此时我们可以手动拼接json字符串返回。
    1. @RequestMapping(value="/quick8")
    2. @ResponseBody
    3. public String save8() throws IOException {
    4. return "{\"username\":\"zhangsan\",\"age\":18}";
    5. }
    上述方式手动拼接json格式字符串的方式很麻烦,开发中往往要将复杂的java对象转换成json格式的字符串, 我们可以使用web阶段学习过的json转换工具jackson进行转换,导入jackson坐标。
    1. <dependency>
    2. <groupId>com.fasterxml.jackson.coregroupId>
    3. <artifactId>jackson-coreartifactId>
    4. <version>2.13.2version>
    5. dependency>
    6. <dependency>
    7. <groupId>com.fasterxml.jackson.coregroupId>
    8. <artifactId>jackson-annotationsartifactId>
    9. <version>2.13.2version>
    10. dependency>
    11. <dependency>
    12. <groupId>com.fasterxml.jackson.coregroupId>
    13. <artifactId>jackson-databindartifactId>
    14. <version>2.13.2.1version>
    15. dependency>

     通过jackson将对象转换为json格式字符串:

    1. @RequestMapping(value="/quick9")
    2. @ResponseBody
    3. public String save9() throws IOException {
    4. User user = new User();
    5. user.setUsername("lisi");
    6. user.setAge(30);
    7. //使用json的转换工具将对象转换成json格式字符串在返回
    8. ObjectMapper objectMapper = new ObjectMapper();
    9. String json = objectMapper.writeValueAsString(user);
    10. return json;
    11. }

    2. 返回对象或集合

    通过SpringMVC帮助我们对对象或集合进行json字符串的转换并回写,为处理器适配器配置消息转换参数, 指定使用jackson进行对象或集合的转换,因此需要在spring-mvc.xml中进行如下配置:
    1. <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
    2. <property name="messageConverters">
    3. <list>
    4. <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter"/>
    5. list>
    6. property>
    7. bean>

    方法直接返回对象:

    1. @RequestMapping(value="/quick10")
    2. @ResponseBody
    3. //期望SpringMVC自动将User转换成json格式的字符串
    4. public User save10() throws IOException {
    5. User user = new User();
    6. user.setUsername("lisi2");
    7. user.setAge(32);
    8. return user;
    9. }

     但是配置消息转换器比较麻烦,配置的代码比较多, 因此,我们可以使用mvc的注解驱动代替上述配置:

    1. <mvc:annotation-driven/>

    源代码spring_mvc_response

  • 相关阅读:
    银行数据采集,数据补录与指标管理3大问题如何解决?
    Git工具使用全解
    牛客网《剑指offer》专栏刷题练习之二叉树合集
    Angular 服务器端渲染应用的开箱即用的缓存功能问题
    Flink SQL 中的流式概念:状态算子
    LeetCode 每日一题——1710. 卡车上的最大单元数
    从零开始搭建Vue3+Vite+TS+Router+Pinia脚手架
    Prometheus Alertmanager生产配置趟过的坑总结
    C++【内存管理】
    Vector | Graph:蚂蚁首个开源Graph RAG框架设计解读
  • 原文地址:https://blog.csdn.net/daqi1983/article/details/126010021