服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - JAVA教程 - SpringMVC表单标签知识点详解

SpringMVC表单标签知识点详解

2021-01-24 11:24Erola JAVA教程

这篇文章主要为大家详细介绍了SpringMVC表单标签知识点,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本篇我们来学习spring mvc表单标签的使用,借助于spring mvc提供的表单标签可以让我们在视图上展示webmodel中的数据更加轻松。

一.首先我们先做一个简单了例子来对spring mvc表单表单标签的使用有一个大致的印象,然后再结合例子对各个标签介绍一下如何使用。

1.首先,在com.demo.web.models包中添加一个模型tagsmodel内容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.demo.web.models;
 
import java.util.list;
import java.util.map;
 
public class tagsmodel{
 
 private string username;
 private string password;
 private boolean testboolean;
 private string[] selectarray;
 private string[] testarray;
 private integer radiobuttonid;
 private integer selectid;
 private list<integer> selectids;
 private map<integer,string> testmap;
 private string remark;
 
 public void setusername(string username){
  this.username=username;
 }
 public void setpassword(string password){
  this.password=password;
 }
 public void settestboolean(boolean testboolean){
  this.testboolean=testboolean;
 }
 public void setselectarray(string[] selectarray){
  this.selectarray=selectarray;
 }
 public void settestarray(string[] testarray){
  this.testarray=testarray;
 }
 public void setradiobuttonid(integer radiobuttonid){
  this.radiobuttonid=radiobuttonid;
 }
 public void setselectid(integer selectid){
  this.selectid=selectid;
 }
 public void setselectids(list<integer> selectids){
  this.selectids=selectids;
 }
 public void settestmap(map<integer,string> testmap){
  this.testmap=testmap;
 }
 public void setremark(string remark){
  this.remark=remark;
 }
 
 public string getusername(){
  return this.username;
 }
 public string getpassword(){
  return this.password;
 }
 public boolean gettestboolean(){
  return this.testboolean;
 }
 public string[] getselectarray(){
  return this.selectarray;
 }
 public string[] gettestarray(){
  return this.testarray;
 }
 public integer getradiobuttonid(){
  return this.radiobuttonid;
 }
 public integer getselectid(){
  return this.selectid;
 }
 public list<integer> getselectids(){
  return this.selectids;
 }
 public map<integer,string> gettestmap(){
  return this.testmap;
 }
 public string getremark(){
  return this.remark;
 }
 
}

2.其次,在包com.demo.web.controllers添加一个tagscontroller内容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.demo.web.controllers;
 
import java.util.arrays;
import java.util.hashmap;
import java.util.map;
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 com.demo.web.models.tagsmodel;
 
@controller
@requestmapping(value = "/tags")
public class tagscontroller {
 
 @requestmapping(value="/test", method = {requestmethod.get})
 public string test(model model){
 
  if(!model.containsattribute("contentmodel")){ 
   
   tagsmodel tagsmodel=new tagsmodel();
   
   tagsmodel.setusername("aaa");
   tagsmodel.setpassword("bbb");
   tagsmodel.settestboolean(true);
   tagsmodel.setselectarray(new string[] {"arrayitem 路人甲"});
   tagsmodel.settestarray(new string[] {"arrayitem 路人甲","arrayitem 路人乙","arrayitem 路人丙"});
   tagsmodel.setradiobuttonid(1);
   tagsmodel.setselectid(2);
   tagsmodel.setselectids(arrays.aslist(1,2));
   map<integer,string> map=new hashmap<integer,string>();
   map.put(1, "mapitem 路人甲");
   map.put(2, "mapitem 路人乙");
   map.put(3, "mapitem 路人丙");
   tagsmodel.settestmap(map);
   tagsmodel.setremark("备注...");
   
   model.addattribute("contentmodel", tagsmodel);
  }
  return "tagstest";
 }
 
}

3.最后,在views文件夹下添加视图tagstest.jsp内容如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<%@ page language="java" contenttype="text/html; charset=utf-8"
 pageencoding="utf-8"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
 
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
 
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>insert title here</title>
</head>
<body>
 <form:form modelattribute="contentmodel" method="post"
  
  input 标签:<form:input path="username"/><br/>
  password 标签:<form:password path="password"/><br/>
  绑定boolean的checkbox 标签:<br/>
  <form:checkbox path="testboolean"/><br/>
  绑定array的checkbox 标签:<br/>
  <form:checkbox path="testarray" value="arrayitem 路人甲"/>arrayitem 路人甲
  <form:checkbox path="testarray" value="arrayitem 路人乙"/>arrayitem 路人乙
  <form:checkbox path="testarray" value="arrayitem 路人丙"/>arrayitem 路人丙
  <form:checkbox path="testarray" value="arrayitem 路人丁"/>arrayitem 路人丁<br/>
  绑定array的checkboxs 标签:<br/>
  <form:checkboxes path="selectarray" items="${contentmodel.testarray}"/><br/>
  绑定map的checkboxs 标签:<br/>
  <form:checkboxes path="selectids" items="${contentmodel.testmap}"/><br/>
  绑定integer的radiobutton 标签:<br/>
  <form:radiobutton path="radiobuttonid" value="0"/>0
  <form:radiobutton path="radiobuttonid" value="1"/>1
  <form:radiobutton path="radiobuttonid" value="2"/>2<br/>
  绑定map的radiobuttons 标签:<br/>
  <form:radiobuttons path="selectid" items="${contentmodel.testmap}"/><br/>
  绑定map的select 标签:<br/>
  <form:select path="selectid" items="${contentmodel.testmap}"/><br/>
  不绑定items数据直接在form:option添加的select 标签:<br/>
  <form:select path="selectid">
   <option>请选择人员</option>
   <form:option value="1">路人甲</form:option>
   <form:option value="2">路人乙</form:option>
   <form:option value="3">路人丙</form:option>
  </form:select><br/>
  不绑定items数据直接在html的option添加的select 标签:<br/>
  <form:select path="selectid">
   <option>请选择人员</option>
   <option value="1">路人甲</option>
   <option value="2">路人乙</option>
   <option value="3">路人丙</option>
  </form:select><br/>
  用form:option绑定items的select 标签:<br/>
  <form:select path="selectid">
   <option/>请选择人员
   <form:options items="${contentmodel.testmap}"/>
  </form:select><br/>
  textarea 标签:
  <form:textarea path="remark"/><br/>
 
  <input type="submit" value="submit" />
  
 </form:form>
</body>
</html>

4.运行测试:

SpringMVC表单标签知识点详解

二.下面我们来介绍各个标签的使用方法。

1.要使用spring mvc提供的表单标签,首先需要在视图页面添加:

?
1
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>

2.form标签:

?
1
<form:form modelattribute="contentmodel" method="post">

modelattribute属性指定该form绑定的是哪个model,当指定了对应的model后就可以在form标签内部其它表单标签上通过为path指定model属性的名称来绑定model中的数据了,method属性指定form的提交方式如get、post等。

3.input标签:

?
1
<form:input path="username"/>

会生成一个type为text的html input标签,通过path属性来指定要绑定的model中的值。

4.password标签:

?
1
<form:password path="password"/>

会生成一个type为password的html input标签,通过path属性来指定要绑定的model中的值。

5.checkbox标签:

会生成一个type为checkbox的html input标签,支持绑定boolean、数组、list或set类型的数据。

绑定boolean数据会生成一个复选框,当boolean为true该复选框为选定状态,false为不选定状态。

?
1
<form:checkbox path="testboolean"/>

SpringMVC表单标签知识点详解

绑定数组、list或set类型的数据(以数组作为演示)如果绑定的数据中有对应checkbox指定的value时则为选定状态,反之为不选定状态:

绑定array的checkbox 标签:<br/>

?
1
2
3
4
<form:checkbox path="testarray" value="arrayitem 路人甲"/>arrayitem 路人甲
<form:checkbox path="testarray" value="arrayitem 路人乙"/>arrayitem 路人乙
<form:checkbox path="testarray" value="arrayitem 路人丙"/>arrayitem 路人丙
<form:checkbox path="testarray" value="arrayitem 路人丁"/>arrayitem 路人丁

SpringMVC表单标签知识点详解

6.checkboxs标签:

会根据绑定的items数据生成一组对应的type为checkbox的html input标签,绑定的数据可以是数组、集合或map,其中checkboxs的path属性也必指定,当path中的数据有和items中的数据值同的时候对应的checkbox为选定状态,反之为不选定状态。

绑定集合数据(以数组作为演示):

?
1
2
绑定array的checkboxs 标签:<br/>
<form:checkboxes path="selectarray" items="${contentmodel.testarray}"/>

SpringMVC表单标签知识点详解

这里需要注意的是当使用el表达式绑定时需要连model的名称一起指定如${contentmodel.testarray}而不能像path一样只指定model对应的属性名称。

但通常情况下我们需要的是checkbox显示的是名称,但选择后提交的是对应名称的值,比如id,我们就可以通过绑定map来实现这个功能:

?
1
2
绑定map的checkboxs 标签:<br/>
<form:checkboxes path="selectids" items="${contentmodel.testmap}"/>

SpringMVC表单标签知识点详解

生成的一组checkbox中其中一个checkbox的html代码:

 

复制代码 代码如下:
<span><input name="selectids" type="checkbox" value="1" checked="checked"/><label for="selectids1">mapitem 路人甲</label></span>

 

7.radiobutton标签:

会生成一个type为radio的html input标签,如果绑定的数据的值对应radiobutton指定的value时则为选定状态,反之为不选定状态:

?
1
2
3
4
绑定integer的radiobutton 标签:<br/>
<form:radiobutton path="radiobuttonid" value="0"/>0
<form:radiobutton path="radiobuttonid" value="1"/>1
<form:radiobutton path="radiobuttonid" value="2"/>2

SpringMVC表单标签知识点详解

8.radiobuttons标签:

会根据绑定的items数据生成一组对应的type为radio的html input标签,绑定的items数据可以是数组、集合或map,其中radiobuttons的path属性也必指定,当path的值和items中的某条数据值相同的时候对应的radio为选定状态,反之为不选定状态,用法和checkboxs很相似。但要注意的是:checkboxs的path绑定的是集合radiobuttons的path绑定的是单个值:

?
1
2
绑定map的radiobuttons 标签:<br/>
<form:radiobuttons path="selectid" items="${contentmodel.testmap}"/>

SpringMVC表单标签知识点详解

9.select标签:

会生成一个html select标签,绑定的items数据可以是数组、集合或map会根据items的内容生成select里面的option选项,当path的值和items中的某条数据值相同的时候对应的option为选定状态,反之为不选定状态,用法与radiobuttons很相似:

?
1
2
绑定map的select 标签:<br/>
<form:select path="selectid" items="${contentmodel.testmap}"/>

SpringMVC表单标签知识点详解

上面的是根据指定的items自动生成的option选项,但我们也可以不指定items手动添加select的option选项:

?
1
2
3
4
5
6
7
不绑定items数据直接在form:option添加的select 标签:<br/>
<form:select path="selectid">
 <option>请选择人员</option>
 <form:option value="1">路人甲</form:option>
 <form:option value="2">路人乙</form:option>
 <form:option value="3">路人丙</form:option>
</form:select>

SpringMVC表单标签知识点详解

其中添加<option>请选择人员</option> 可以让在没有进行选择的情况下不指定任何默认值。

下面看一下form:option 与option的区别:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
不绑定items数据直接在form:option添加的select 标签:<br/>
<form:select path="selectid">
 <option>请选择人员</option>
 <form:option value="1">路人甲</form:option>
 <form:option value="2">路人乙</form:option>
 <form:option value="3">路人丙</form:option>
</form:select><br/>
不绑定items数据直接在html的option添加的select 标签:<br/>
<form:select path="selectid">
 <option>请选择人员</option>
 <option value="1">路人甲</option>
 <option value="2">路人乙</option>
 <option value="3">路人丙</option>
</form:select><br/>

SpringMVC表单标签知识点详解

由截图的结果可以看出form:option 正确选择了path中指定的selectid而option没有,说明form:option有数据绑定功能option没有。

另外我们也可以不为select指定items,而把items指定到form:option 上这两种效果基本是一样的,一点区别就是为select指定items再在select里面添加option是不起作用的会被items生成的option覆盖掉,而把items指定到form:option 上则可以再在select里面添加option:

?
1
2
3
4
5
用form:option绑定items的select 标签:<br/>
<form:select path="selectid">
 <option/>请选择人员
 <form:options items="${contentmodel.testmap}"/>
</form:select>

SpringMVC表单标签知识点详解

10.textarea标签:

?
1
2
textarea 标签:
<form:textarea path="remark"/>

SpringMVC表单标签知识点详解

会生成一个html textarea标签,通过path属性来指定要绑定的model中的值。

11.hidden标签:

会生成一个type为hidden的html input标签,通过path属性来指定要绑定的model中的值。

12.errors标签:

errors标签的用法在系列(6)—>数据验证中已经说明了,这里不在赘述。

spring mvc表单标签的内容到此结束。

代码下载

注:之前没注意前11篇的示例代码,不知道为什么当时打包上传上去的是没有.project项目文件的,导致下载后不能直接导入eclipse运行,虚拟机又 被我删掉了,这些示例代码也没有备份,但是代码文件还在的,所以可以新建一个dynamic web project把对应的配置文件和controller还有view导入就可以了,给大家造成的不便说声抱歉。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/liukemng/p/3754211.html

延伸 · 阅读

精彩推荐
  • JAVA教程java 格式化输出数字的方法

    java 格式化输出数字的方法

    在实际工作中,常常需要设定数字的输出格式,如以百分比的形式输出,或者设定小数位数等,现稍微总结如下 ...

    java教程网1762019-11-01
  • JAVA教程serialVersionUID作用全面解析

    serialVersionUID作用全面解析

    这篇文章全面解析了java中serialVersionUID的作用,具有一定的参考价值,感兴趣的小伙伴们可以参考一下...

    金丝燕网2452020-11-25
  • JAVA教程Javabean基于xstream包实现转XML文档的方法

    Javabean基于xstream包实现转XML文档的方法

    这篇文章主要介绍了Javabean基于xstream包实现转XML文档的方法,结合具体实例形式分析了xstream包用于转换xml文件的具体使用技巧,需要的朋友可以参考下...

    itsonglin3592020-11-01
  • JAVA教程java 设计模型之单例模式详解

    java 设计模型之单例模式详解

    本文主要介绍了java 单例模式,单例对象(Singleton)是一种常用的设计模式。在Java应用中,单例对象能保证在一个JVM中,该对象只有一个实例存在,希望能帮...

    lqh2892020-05-25
  • JAVA教程详解 Java 中 equals 和 == 的区别

    详解 Java 中 equals 和 == 的区别

    这篇文章主要介绍了详解 Java 中 equals 和 == 的区别的相关资料,equals 和 == 都是用来检测两个字符串是否相等,返回值也都是布尔型,但是两者在内部比较的...

    JAVA之家2012020-08-26
  • JAVA教程mybatis-plus读取JSON类型的方法实现

    mybatis-plus读取JSON类型的方法实现

    这篇文章主要介绍了mybatis-plus读取JSON类型的方法实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们...

    liangwp3862020-09-26
  • JAVA教程Java关键字instanceof用法及实现策略

    Java关键字instanceof用法及实现策略

    instanceof 运算符是用来在运行时判断对象是否是指定类及其父类的一个实例。这篇文章主要介绍了Java关键字instanceof用法解析,需要的朋友可以参考下 ...

    YSOcean3762020-08-04
  • JAVA教程java多线程之Future和FutureTask使用实例

    java多线程之Future和FutureTask使用实例

    这篇文章主要介绍了java多线程之Future和FutureTask使用实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧...

    PascalLee4192020-10-01