初见SpringMVC之数据绑定

初见SpringMVC之数据绑定

数据绑定的内容非常通俗易懂,后台受理网络请求的方法获取http请求参数的过程就是数据绑定。Spring提供了多种数据绑定的方法:

  1. 绑定默认数据类型:

SpringMVC中常用的默认数据类型包括,HttpServletRequest,HttpServletResponse,HttpSession。下面通过一个例子介绍,如何通过默认数据类型绑定,获取请求参数。

  • 导入SpringMVC相关包,在web.xml中配置DsipatcherServlet

  • 编写Handler,处理具体的网络请求,在此处是通过Controll注解标识一个Handller,通过RequestMapping完成Handler和url之间的映射。

@Controller
public class DataBinding {
    @RequestMapping(value="/defaultDataBinding")
    public String defaultDataBinding(HttpServletRequest request){
       Stringid = request.getParameter("id");
       System.out.println("id="+id);
       return "success";
    }
}

defaultDataBinding是受理以”/DefaultDataBinging”结尾的网络请求的方法,通过默认参数HttpServletRequest完成数据绑定,而http请求提交的参数均通过 request.getParameter()方法获取。

  • Spring-cofig.xml文件配置
<?xml version="1.0" encoding="UTF-8"?>
<beansxmlns="http://www.springframework.org/schema/beans"
  xmlns:mvc="http://www.springframework.org/schema/mvc"
  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-4.3.xsd
  http://www.springframework.org/schema/mvc
 http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
  http://www.springframework.org/schema/context
  http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    <!-- 定义组件扫描器,指定需要扫描的包 -->
    <context:component-scan base-package="com.bupt.controller"/> 
    <!-- 定义视图解析器 -->
    <bean id="viewResolver" class=
    "org.springframework.web.servlet.view.InternalResourceViewResolver">
         <!--设置前缀 -->
         <propertyname="prefix" value="/WEB-INF/" />
         <!--设置后缀 -->
         <propertyname="suffix" value=".jsp" />
    </bean>
</beans>
  1. 绑定简单数据类型

简单数据类型是指java中的基本数据类型以及String类型,假如提交的参数仅仅只是一个id,可以采用绑定简答数据类型的方法,而不用通过绑定request后再获取id数据。在DataBinding类中添加如方法:

  • 在Handler中添加方法
@RequestMapping(value="/SimpleDataBinding")
    publicString simpleDataBinding(HttpServletRequestrequest,int id){
       System.out.println("request中获取id="+request.getParameter("id"));
       System.out.println("id="+id);
       return"success";
   }

在上述代码中,新增了一个参数int id。id直接可以获取http请求中对应的id字段。

图2.1 绑定简答数据类型

从测试结果中可以发现,方法中id参数可以字节获取http请求中携带的id字段,同时还可以绑定HttpServletRequest的方法获取请求参数。这里需要特别注意的是,http请求中的字段名称必须和方法中参数名称保持一致。假如不一致是不能绑定参数的。

  1. 绑定POJO数据类型

  当http请求携带的参数很多的时候,采用绑定简单数据类型的方法就需要设置过多的方法形参,此时可以利用一个POJO对象充当方法形参,获取http请求中的参数。下面通过一个验证用户登录的例子来介绍绑定POJO数据类型的方式。
  用户登录时候需要提交用户名(userName)和密码(password)给服务器去验证,此时如果采用绑定简单数据类型的方法时,需要两个形参来完成数据绑定。此时就可以采用绑定POJO类型的方法获取请求参数

  • 在服务器一端创建一个POJO类
public class User {
    //POJO类的属性名要和http请求的字段名保持一致
    publicString userName;
    publicString password;
    publicStringgetUserName() {
       return userName;
    }
    publicvoid setUserName(String userName){
       this.userName= userName;
    }
    publicString getPassword() {
       returnpassword;
    }
    publicvoid setPassword(String password){
       this.password= password;
    }
}
  • 在Handler中添加接收请求的方法:
 @RequestMapping("/POJODataBinding")
    publicString POJODataBinding(User user){
       System.out.println("username="+user.getUserName());
       System.out.println("password="+user.getPassword());
       return"success";
    }
  • 在WebConten目录下,创建一个user.html文件,显示一个简单的登录页面
<!DOCTYPEhtml>
<html>
<head>
<metacharset="UTF-8">
<title>helloSpringMVC</title>
</head>
<body>
    <form action="http://localhost:8080/HelloSpringMV/POJODataBinding"
          method="post">
           用户名<input type="text" name="userName"></input><br>
           密码<input type="password" name="password"></input><br>
           <input type="submit"name="submit" value="登录"></input><br>
    </form>
</body>
</html>
  • 在Springmvc-config.xml文件中添加一行配置:
<!--dispatcherServelet不拦截静态资源-->
    <mvc:default-servlet-handler/>
图3.2 服务器控制台输出结果
  1. 自定义数据绑定

  自定义数据绑定,是一种比较冷门的数据绑定方法,假设存在这样一种情景:请求携带的参数类型为A,后台接收方法的形参类型为B,比如http请求携带的参数是日期字符串”2017-11-20 4:15:30”,而后台接收方法的形参类型是Date,在这样一种参数不匹配的情况下,就需要用到自定义数据绑定。
  完成自定义数据绑定,最主要的工作就是设计一个类型转化器,通过日期转换的例子介绍自定义数据绑定。

  • 构建一个数据类型转换器,创建一个名为DateConverter的类,继承Converter接口。
    第一个泛型参数代表待转换类型,第二个泛型参数代表目标转换类型,所有的转换工作均只在convert方法中完成。
public class DateConverter implements Converter<String,Date>{
    privateString datePattern="yyyy-mm-dd HH:mm:ss";
    @Override
    publicDate convert(String source) {
       // TODO Auto-generated method stub
       SimpleDateFormat sdf = new SimpleDateFormat(datePattern);
       try{
           return sdf.parse(source);
       } catch(ParseException e) {
           // TODO Auto-generated catch block
           throw newIllegalArgumentException("无效日期格式,请使用如下格式:"+datePattern);
       }
    }
}
  • 在Spring-config.xml文件中配置类型转换器
<pre name="code" class="html" style="box-sizing: border-box; margin: 0px 0px 24px; padding: 0px 16px; overflow-x: auto; background-color: rgb(240, 240, 240); font-family: Consolas, Inconsolata, Courier, monospace; font-size: 12px; line-height: 20px; color: rgb(0, 0, 0); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: justify; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><?xml version="1.0" encoding="UTF-8"?>
<beansxmlns="http://www.springframework.org/schema/beans"
  xmlns:mvc="http://www.springframework.org/schema/mvc"
  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-4.3.xsd
 http://www.springframework.org/schema/mvc
 http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
 http://www.springframework.org/schema/context
  http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    <!-- 定义组件扫描器,指定需要扫描的包 -->
    <context:component-scan base-package="com.bupt.controller" /> 
    <!-- 配置注解驱动 -->
    <!-- <mvc:annotation-driven />-->
    <mvc:annotation-driven conversion-service="conversionService"/>
    <!--dispatcherServelet不拦截静态资源-->
    <mvc:default-servlet-handler/>
    <!-- 定义视图解析器 -->
    <bean id="viewResolver" class=
    "org.springframework.web.servlet.view.InternalResourceViewResolver">
         <!--设置前缀 -->
         <propertyname="prefix" value="/WEB-INF/" />
         <!--设置后缀 -->
         <propertyname="suffix" value=".jsp" />
    </bean>
    <!-- 自定义类型转换器配置 -->
    <bean id="conversionService"class=
     "org.springframework.context.support.ConversionServiceFactoryBean">
       <property name="converters">
           <set>
              <bean class="com.bupt.converter.DateConverter"/>
           </set>
       </property>
    </bean></pre>
  • 在Handler中添加处理网络请求的方法
 @RequestMapping(value="/ConverterDateBinding")
    publicString ConverterDateBinding(Date date){
       System.out.println(date.toString());
       return"success";
    }
  1. 绑定数组类型
      假如前端发送的Http请求携带了同名的多个参数时,就会用到绑定数组类型的情况,比如前端使用复选框来完成选定操作的情景。
  • 在Handler中添加处理网络请求的方法
 @RequestMapping(value="/arrayDateBinding")
    publicString  arrayDateBinding(String[] users){
       for(int i=0;i<users.length;i++){
           System.out.println("删除user="+users[i]);
       }
       return"success";
   }
  • 在WebConten下创建array.html文件
<!DOCTYPE html>
<html>
<head>
<metacharset="UTF-8">
<title>Inserttitle here</title>
</head>
<body>
    <form action="http://localhost:8080/HelloSpringMV/arrayDateBinding"
         method="POST">
    <table width="20%"border=1>
       <tr>
           <td>选择</td>
           <td>用户名称</td>
       </tr>
       <tr>
           <td> <input type="checkbox"name="users" value="SmartTu"></input></td>
           <td>SmartTu</td>
       </tr>
           <td> <input type="checkbox"name="users" value="SmartTu1"></input></td>
           <td>SmartTu1</td>
       </tr>
           <td> <input type="checkbox"name="users" value="SmartTu2"></input></td>
           <td>SmartTu2</td>
       </tr>
    </table>
       <input type="submit" value="提交">
    </form>
</body>
</html>
  • 测试
图 5.1 复选框选择情况

点击提交按钮看,观察服务器控制台输出

图5.2服务器控制台输出情况

Reference:
[1] Java企业级应用开发教程 2017.黑马程序员编著
[2] csdn博客原文

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351