在这里, path 属性将表单字段绑定到bean" />

spring 教程

spring mvc表单文本字段 -888棋牌游戏

spring mvc表单文本字段标签使用绑定值生成html输入标签。默认情况下,输入标签的类型是文本。

语法

在这里, path 属性将表单字段绑定到bean属性。

spring mvc表单标签库还提供了其他输入类型,例如电子邮件,日期,电话,等等。

对于电子邮件:

日期:

spring mvc表单文本字段的示例

让我们看一个使用表单标签库创建铁路预订表单的示例。

1、将依赖项添加到pom.xml文件。

          

    org.springframework
    spring-webmvc
    5.1.1.release

    
  
    javax.servlet  
    servlet-api  
    3.0-alpha-1  

    

    javax.servlet
    jstl
    1.2


    org.apache.tomcat
    tomcat-jasper
    9.0.12

2、创建bean类

在这里,bean类包含与表单中存在的输入字段相对应的变量(以及setter和getter方法)。

reservation.java

package com.nhooo;
public class reservation {
    private string firstname;
    private string lastname;
    
    public reservation()
    {       
    }
    public string getfirstname() {
        return firstname;
    }
    public void setfirstname(string firstname) {
        this.firstname = firstname;
    }
    public string getlastname() {
        return lastname;
    }
    public void setlastname(string lastname) {
        this.lastname = lastname;
    }   
}

3、创建控制器类

reservationcontroller.java

package com.nhooo;
import org.springframework.stereotype.controller;
import org.springframework.ui.model;
import org.springframework.web.bind.annotation.modelattribute;
import org.springframework.web.bind.annotation.requestmapping;
@requestmapping("/reservation")
@controller
public class reservationcontroller {
    @requestmapping("/bookingform")
public string bookingform(model model)
{
      //create a reservation object 
    reservation res=new reservation();
      //provide reservation object to the model 
    model.addattribute("reservation", res);
    return "reservation-page";
}
@requestmapping("/submitform")
// @modelattribute binds form data to the object
public string submitform(@modelattribute("reservation") reservation res)
{
    return "confirmation-form";
}
}

4、在web.xml文件中提供控制器的条目

web.xml



  springmvc
     
    spring  
    org.springframework.web.servlet.dispatcherservlet  
    1    
  
  
    spring  
    /  
  

5、在xml文件中定义bean

spring-servlet.xml



    
    
    
    
    
     
        
             
     

6、创建请求的页面

index.jsp

    railway registration form
click here for reservation.

7、创建其他视图组件

reservation-page.jsp

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

railway reservation form

             first name:                

        last name:          

               

注意-通过@modelattribute批注传递的值应该与视图页面中存在的modelattribute值相同。

confirmation-page.jsp

your reservation is confirmed successfully. please, re-check the details.

first name : ${reservation.firstname} 
last name : ${reservation.lastname}

输出:

spring mvc表单文本field
spring mvc表单文本字段
spring mvc表单文本字段
spring mvc表单文本字段

888棋牌游戏的友情链接:

网站地图