May 2015
Intermediate to advanced
234 pages
4h 18m
English
In this recipe, you will learn how to display a checkbox and, when the form is submitted, retrieve its state (selected or not) in a controller method.
Use the form:checkbox element in the JSP and a boolean attribute to store its value when the form is submitted:
boolean attribute of the default object (refer to the Setting a form's default values using a model object recipe):user.setMarried(false);
form:checkbox element:<form:checkbox path="married" />
@ModelAttribute object has a corresponding boolean attribute:public class User {
private boolean married;
...This is the generated ...
Read now
Unlock full access