springMVC学习总结(三)数据绑定

一、springMVC的数据绑定,常用绑定类型有:

1、servlet三大域对象:

  • HttpServletRequest
  • HttpServletResponse
  • HttpSession

2、Model的方式

  • 类型:

    • Model

       @Controller
      public class Demo01Controller {
      @RequestMapping(value = "test.action")
      public String test(Model md){
      md.addAttribute("name","xujie");
      return "test";
      }
      }
    • ModelMap

       @Controller
      public class Demo01Controller {
      @RequestMapping(value = "test.action")
      public String test(ModelMap mp){
      mp.addAttribute("name","xujie");
      return "test"; //字符串是返回页面的页面名
      }
      }
    • ModelAndView

       @Controller
      public class Demo01Controller {
      @RequestMapping(value = "test.action")
      public ModelAndView test(ModelAndView mv){
      mv.addObject("name","xujie");
      mv.setViewName("test");
      return mv;
      }
      }
  • 前台页面jsp编码

      	<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
    <%@page isELIgnored="false" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Hello World</title>
    </head>
    <body>
    1、姓名:${requestScope.name }<br/>
    </body>
    </html>
  • 总结:

    • Model和ModelMap类型的model,都要在参数列表中声明。
    • ModelAndView可以不用在参数列表中声明,但是最后的跳转页面一定要通过ModelAndView.setViewName()的方式跳转,否则页面可以成功跳转,但是取不到后台设置的值。

3、绑定简单数据类型

  • 用法:

    • 示例一:

        //在处理器形参位置声明简单数据类型,处理器直接获取
      @Controller
      public class Demo01Controller {
      @RequestMapping(value = "test.action")
      public String test(String name){
      System.out.println("获取到前台的值是:"+name);
      return "test";
      }
      }
    • 支持的简单绑定类型:

      • 整型(int、Integer)
      • 字符串(String)
      • 单精度(Float、float)
      • 双精度(Double、double)
      • 布尔型(true、false)
  • @RequestParam用法:

    • @RequestParam 有三个常用属性值:

      • value:绑定参数的变量名

      • defaultValue:如果没有传这个值,默认取值

      • required:该变量是否必须要有

        示例:

          @Controller
        public class Demo01Controller {
        @RequestMapping(value = "test.action")
        public String test(@RequestParam(value = "name",defaultValue = "xujie",required = false) String name){
        System.out.println("name="+name);
        return "test";
        }
        }

4、绑定pojo(简单的java对象)类型

Student类:(pojo)

	public class Student {
private String name;
private int age; get/set...
}

Controller类:

	@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.POST)
public String test(Student stu){
System.out.println("学生姓名:"+stu.getName());
System.out.println("学生年龄:"+stu.getAge());
return "test";
}
}
+ *这里我是用的postman做的请求测试,所以此处不列举前台是如何发送请求的了,只要是post请求,并且参数名分别为name和age就可以获取到;*

5、绑定包装对象(对象里面有对象)

Courses类(pojo):

package com.springMVC.pojo;

public class Courses {
private String coursesName;
private String teacher; get/set...
}

Courses类(pojo):

package com.springMVC.pojo;

public class Student {
private String name;
private int age;
private Courses courses; get/set...
}

Controller类:

@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.POST)
public String test(Student stu){
System.out.println("学生姓名:"+stu.getName());
System.out.println("学生年龄:"+stu.getAge());
System.out.println("课程名称"+stu.getCourses().getCoursesName());
System.out.println("课程老师"+stu.getCourses().getTeacher());
return "test";
}
}

6、绑定数组(以字符串数组为例)

直接绑定数组类型参数

Controller类:

@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.POST)
public String test(String[] strs){
for (String str:strs ) {
System.out.println(str);
}
return "test";
}
}

接口测试:

通过pojo属性的方式绑定数组

pojo类:

package com.springMVC.pojo;

public class Student {
private String name;
private int age;
private Courses courses;
private String[] friends; get/set...
}

Controller类:

@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.POST)
public String test(Student stu){
String[] friends = stu.getFriends();
for (String str:friends ) {
System.out.println(str);
}
return "test";
}
}

接口测试

7、绑定List

接收页面数据

接收页面数据的时候,list必须声明为某一个pojo的属性才可以接收到

pojo类:

package com.springMVC.pojo;

import java.util.List;

public class Student {
private String name;
private int age;
private Courses courses;
private List<String> friends; //pojo的list get/set... }

Controller类:

@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.POST)
public String test(Student student){
List<String> friends = student.getFriends();
for (String str : friends) {
System.out.println(str);
}
return "test";
}
}

接口测试:

向页面传递数据

Controller类:

此处以ModelMap的方式向页面传递数据

@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.GET)
public String test(ModelMap modelMap){
//ModelMap modelMap = new ModelMap();
Student student = new Student();
ArrayList<String> list = new ArrayList<String>();
list.add("xujie1");
list.add("xujie2");
list.add("xujie3");
list.add("xujie4");
student.setFriends(list);
student.setName("yuanxiliu");
modelMap.addAttribute("student",student);
return "test";
}
}

jsp页面:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@page isELIgnored="false" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hello World</title>
</head>
<body>
<c:forEach items="${student.friends}" var="friend" varStatus="state" > ${friend}<%--循环输出List--%> </c:forEach>
</body>
</html>

页面结果:

8、绑定Map

跟list类似,同样必须定义成某个pojo的属性才可以绑定数据:

pojo类:

package com.springMVC.pojo;

import java.util.HashMap;
import java.util.List; public class Student {
private String name;
private int age;
private Courses courses;
private HashMap<String,String> parents; get/set...
}

Controller类:

@Controller
public class Demo01Controller {
@RequestMapping(value = "test.action",method = RequestMethod.POST)
public String test(Student student){
String father = student.getParents().get("father");
String mother = student.getParents().get("mother");
System.out.println("父亲是:"+father);
System.out.println("母亲是:"+mother);
return "test";
}
}

接口测试:

springMVC学习总结(三)数据绑定的更多相关文章

  1. SpringMVC:学习笔记(5)——数据绑定及表单标签

    SpringMVC——数据绑定及表单标签 理解数据绑定 为什么要使用数据绑定 基于HTTP特性,所有的用户输入的请求参数类型都是String,比如下面表单: 按照我们以往所学,如果要获取请求的所有参数 ...

  2. SpringMVC学习笔记之---数据绑定

    SpringMVC数据绑定 一.基础配置 (1)pom.xml <dependencies> <dependency> <groupId>junit</gro ...

  3. SpringMVC学习笔记(三)

    一.SpringMVC使用注解完成 1.首先,导入SpringMVC需要的jar包. 2.添加Web.xml配置文件中关于SpringMVC的配置 <!--configure the setti ...

  4. SpringMVC 学习笔记(三)数据的校验

    34. 尚硅谷_佟刚_SpringMVC_数据绑定流程分析.avi 例如:在jsp中输入一个String字符串类型,需要转换成Date类型的流程如下 convertservice对传入的数据进行转换 ...

  5. SpringMVC学习总结(三)——Controller接口详解(2)

    4.5.ServletForwardingController 将接收到的请求转发到一个命名的servlet,具体示例如下: package cn.javass.chapter4.web.servle ...

  6. springmvc学习(三)

    第一点---------使用 @RequestMapping 映射请求• Ant 风格资源地址支持 3 种匹配符:?:匹配文件名中的一个字符 *:匹配文件名中的任意字符 **:** 匹配多层路径 @R ...

  7. SpringMVC学习手册(三)------EL和JSTL(上)

    1.含义 EL:       Expression Language , 表达式语言 JSTL:   Java Server Pages Standard Tag Library, JSP标准标签库  ...

  8. SpringMVC学习(三)———— springmvc的数据校验的实现

    一.什么是数据校验? 这个比较好理解,就是用来验证客户输入的数据是否合法,比如客户登录时,用户名不能为空,或者不能超出指定长度等要求,这就叫做数据校验. 数据校验分为客户端校验和服务端校验 客户端校验 ...

  9. SpringMVC学习记录三——8 springmvc和mybatis整合

    8      springmvc和mybatis整合 8.1      需求 使用springmvc和mybatis完成商品列表查询. 8.2      整合思路 springmvc+mybaits的 ...

  10. springmvc学习日志三

    一.文件的上传 1.首先在lib中添加相应的jar包 2.建立jsp页面,表单必须是post提交,编码必须是multipart/form-data,文件上传文本框必须起名 <body> & ...

随机推荐

  1. Mybatis按顺序获取数据

    sql语句select * from producttg where hospitalcode in (1,2,3)  获取到的数据并不是按照条件1,2,3的顺序排列,如果要成下面形式(mybatis ...

  2. [转载] Thrift-client与spring集成

    转载自http://shift-alt-ctrl.iteye.com/blog/1990030?utm_source=tuicool&utm_medium=referral Thrift-cl ...

  3. Storm入门之第二章

    1.准备开始 本章创建一个Storm工程和第一个Storm拓扑结构. 需要提供JER版本在1.6以上,下载地址http://www.java .com/downloads/. 2.操作模式 Storm ...

  4. Altera FIFO IP核时序说明

    ALTERA在LPM(library of parameterized mudules)库中提供了参数可配置的单时钟FIFO(SCFIFO)和双时钟FIFO(DCFIFO).FIFO主要应用在需要数据 ...

  5. JavaScript学习笔记(七)——函数的定义与调用

    在学习廖雪峰前辈的JavaScript教程中,遇到了一些需要注意的点,因此作为学习笔记列出来,提醒自己注意! 如果大家有需要,欢迎访问前辈的博客https://www.liaoxuefeng.com/ ...

  6. Vue-cli创建项目从单页面到多页面2-history模式

    之前讲过怎样将vue-cli创建的项目改造成多页面(vue-cli创建项目从单页面到多页面),今天说一下怎样在多页面的前提下使用history模式. 如何使用history模式 因为vue默认的has ...

  7. String的Intern方法

    jdk6 和 jdk7 下 intern 的区别 相信很多 JAVA 程序员都做做类似 String s = new String("abc")这个语句创建了几个对象的题目. 这种 ...

  8. iOS面试题最全梳理

    OC的理解与特性 OC作为一门面向对象的语言,自然具有面向对象的语言特性:封装.继承.多态.它既具有静态语言的特性(如C++),又有动态语言的效率(动态绑定.动态加载等).总体来讲,OC确实是一门不错 ...

  9. MVC模式tp框架四中路由形式

    ①基本get形式 http://网址/index.php?m=分组&c=控制器&a=操作方法 该方法是最底层的get形式,传统的传递参数方式,不安全. ②pathinfo路径形式[默认 ...

  10. 使用JSCH框架通过跳转机访问其他节点

    之前搞了套远程访问ssh进行操作的代码,最近有需求,需要通过一台跳转机才能访问目标服务.在网上搜了半天,也没找到比较好的例子,就自己翻阅了下JSCH的API.但是看的云里雾里的.联想了下,端口转发的原 ...