IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> SpringMVC -SpringMVC数据响应详解与案例步骤开发 -> 正文阅读

[Java知识库]SpringMVC -SpringMVC数据响应详解与案例步骤开发

SpringMVC的数据响应方式

请添加图片描述

页面跳转

返回字符串形式

请添加图片描述

返回ModelAndView对象

编写UserController.java

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {

    @RequestMapping(value = "/quick2")
    public ModelAndView save2(){
        /*
            model:模型 作用封装数据
            View:视图 作用展示数据
         */
        ModelAndView modelAndView = new ModelAndView();
        //设置视图名称
        modelAndView.setViewName("success");
        return modelAndView;
    }


    @RequestMapping(value = "/quick",method = RequestMethod.GET,params = {"username"})
    public String save(){
        System.out.println("Controller save running...");
        //跳转视图
        return "success";
    }
}

成功测试

请添加图片描述

设置模型数据

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {

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


    @RequestMapping(value = "/quick",method = RequestMethod.GET,params = {"username"})
    public String save(){
        System.out.println("Controller save running...");
        //跳转视图
        return "success";
    }
}
编写success.jsp
<%--
  Created by IntelliJ IDEA.
  User: guigui
  Date: 2022/4/16
  Time: 18:21
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@page isELIgnored="false" %>
<html>
<head>
    <title>Title</title>
</head>
<body>
<h1>success!! ${username}</h1>
</body>
</html>

注意jsp识别代码
<%@page isELIgnored="false" %>
成功测试

请添加图片描述

返回ModelAndView对象2

编写UserControlle

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {

    @RequestMapping(value = "/quick3")
    public ModelAndView save3(ModelAndView modelAndView){
        modelAndView.addObject("username","liuhongtao");
        modelAndView.setViewName("success");
        return modelAndView;
    }

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

    @RequestMapping(value = "/quick",method = RequestMethod.GET,params = {"username"})
    public String save(){
        System.out.println("Controller save running...");
        //跳转视图
        return "success";
    }
}

成功测试

请添加图片描述

返回ModelAndView对象3

编写UserController

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick4")
    public String save4( Model model){
        model.addAttribute("username","刘鸿涛");
        return "success";
    }

    @RequestMapping(value = "/quick3")
    public ModelAndView save3(ModelAndView modelAndView){
        modelAndView.addObject("username","liuhongtao");
        modelAndView.setViewName("success");
        return modelAndView;
    }

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

    @RequestMapping(value = "/quick",method = RequestMethod.GET,params = {"username"})
    public String save(){
        System.out.println("Controller save running...");
        //跳转视图
        return "success";
    }
}

成功测试

请添加图片描述

返回ModelAndView对象4

编写UserController

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick5")
    public String save5(HttpServletRequest request){
        request.setAttribute("username","刘鸿涛");
        return "success";
    }

    @RequestMapping(value = "/quick4")
    public String save4( Model model){
        model.addAttribute("username","刘鸿涛");
        return "success";
    }

    @RequestMapping(value = "/quick3")
    public ModelAndView save3(ModelAndView modelAndView){
        modelAndView.addObject("username","liuhongtao");
        modelAndView.setViewName("success");
        return modelAndView;
    }

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

    @RequestMapping(value = "/quick",method = RequestMethod.GET,params = {"username"})
    public String save(){
        System.out.println("Controller save running...");
        //跳转视图
        return "success";
    }
}

成功测试

请添加图片描述

回写数据

直接返回字符串

请添加图片描述

编写UserController

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick6")
    public void save6(HttpServletResponse response) throws IOException {
        response.getWriter().print("hell taotao");
    }
}

成功测试

请添加图片描述

直接返回字符串2

请添加图片描述

编写UserController

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick7")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save7(HttpServletResponse response) throws IOException {
        return "hello taotao";
    }

    @RequestMapping(value = "/quick6")
    public void save6(HttpServletResponse response) throws IOException {
        response.getWriter().print("hell taotao");
    }
}

成功测试

请添加图片描述

直接返回json格式字符串

编写UserController

package com.taotao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick8")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save8(HttpServletResponse response) throws IOException {
        return "{\"username\":\"taotao\",\"age\":18}";
    }

    @RequestMapping(value = "/quick7")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save7(HttpServletResponse response) throws IOException {
        return "hello taotao";
    }

    @RequestMapping(value = "/quick6")
    public void save6(HttpServletResponse response) throws IOException {
        response.getWriter().print("hell taotao");
    }
}

成功测试

请添加图片描述

直接返回json格式字符串(解耦)

编写user类

package com.taotao.domain;

/**
 * create by 刘鸿涛
 * 2022/4/17 21:38
 */
@SuppressWarnings({"all"})
public class User {
    private String username;
    private int age;

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "User{" +
                "username='" + username + '\'' +
                ", age=" + age +
                '}';
    }
}

导入json依赖

     <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.9.0</version>
    </dependency>

    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.9.0</version>
    </dependency>

    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>2.9.0</version>
    </dependency>

编写UserController

package com.taotao.controller;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.taotao.domain.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick9")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save9() throws IOException {
        User user = new User();
        user.setUsername("lisa");
        user.setAge(20);
        //使用json的转换工具将对象转换成json格式字符串在返回
        ObjectMapper objectMapper = new ObjectMapper();
        String json = objectMapper.writeValueAsString(user);
        return json;
    }

    @RequestMapping(value = "/quick8")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save8(HttpServletResponse response) throws IOException {

    }

    @RequestMapping(value = "/quick7")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save7(HttpServletResponse response) throws IOException {
        return "hello taotao";
    }

    @RequestMapping(value = "/quick6")
    public void save6(HttpServletResponse response) throws IOException {
        response.getWriter().print("hell taotao");
    }
}

成功测试

请添加图片描述

返回对象或集合

编写UserController

package com.taotao.controller;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.taotao.domain.User;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
 * create by 刘鸿涛
 * 2022/4/16 18:19
 */
@SuppressWarnings({"all"})
@RequestMapping("/user")
@Controller
public class UserController {
    @RequestMapping(value = "/quick10")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    //期望SpringMVC自动将User转换成json格式的字符串
    public User save10() throws IOException {
        User user = new User();
        user.setUsername("lisa");
        user.setAge(20);
        return user;
    }

    @RequestMapping(value = "/quick9")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save9() throws IOException {
        User user = new User();
        user.setUsername("lisa");
        user.setAge(20);
        //使用json的转换工具将对象转换成json格式字符串在返回
        ObjectMapper objectMapper = new ObjectMapper();
        String json = objectMapper.writeValueAsString(user);
        return json;
    }

    @RequestMapping(value = "/quick8")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save8(HttpServletResponse response) throws IOException {
        return "{\"username\":\"taotao\",\"age\":18}";
    }

    @RequestMapping(value = "/quick7")
    @ResponseBody       //告知SpringMVC框架 不进行视图跳转 直接进行数据响应
    public String save7(HttpServletResponse response) throws IOException {
        return "hello taotao";
    }

    @RequestMapping(value = "/quick6")
    public void save6(HttpServletResponse response) throws IOException {
        response.getWriter().print("hell taotao");
    }
}

编写Spring-mvc.xml

配置处理器映射器

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd">

<!--Controller的组件扫描-->
    <context:component-scan base-package="com.taotao">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

<!--    配置内部资源视图解释器-->
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!--        /jsp/success.jsp-->
        <property name="prefix" value="/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

<!--    配置处理器映射器-->
    <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>
</beans>

成功测试

请添加图片描述

返回对象或集合(解耦)

请添加图片描述

编写Spring-mvc.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
            http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd">

<!--Controller的组件扫描-->
    <context:component-scan base-package="com.taotao">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

<!--    配置内部资源视图解释器-->
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!--        /jsp/success.jsp-->
        <property name="prefix" value="/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

<!--    配置处理器映射器-->
<!--    <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>-->

<!--    mvc的注解驱动-->
<mvc:annotation-driven></mvc:annotation-driven>
</beans>

成功测试

请添加图片描述

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-04-18 17:27:33  更:2022-04-18 17:28:39 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 4:59:00-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码