" />

spring 教程

spring mvc表单单选按钮 -888棋牌游戏

spring mvc表单单选按钮使我们一次只能选择一个选项。此标签呈现单选类型的html输入标签。

语法

除了单选按钮标签外,spring mvc表单标签库还包含 radiobuttons 标签。该标签会呈现多个类型为radio的html输入标签。

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类

reservation.java

package com.nhooo;
public class reservation {
    private string firstname;
    private string lastname;
    private string gender;
    
    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;
    }
    public string getgender() {
        return gender;
    }
    public void setgender(string gender) {
        gender = gender;
    }   
}

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")
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:          

        gender:          male          female          

             

confirmation-page.jsp

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

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

输出:

spring mvc form radio button
spring mvc form单选按钮
spring mvc form单选按钮
spring mvc form单选按钮

888棋牌游戏的友情链接:

网站地图