Tag Archives Spring MVC

spring-mvc-drop-down Drop-down lists are the one of the most frequent elements in web forms. In HTML you can create such control using appropriate tags: < form:select > - parent tag of drop-down list and < form:option > - child tag of < form:select > tag. Spring MVC tag library has its own solution for the drop-down lists. In this post I will write about < form:select >, < form:option >, and < form:options > tags.

Spring-mvc-validation It's hard to imagine a web-application which doesn't has some validation logic for an user data. Almost all user's data has some constraints, e.g. date of birth should consist of day, month, year etc. Spring MVC has its own solution for the data validation, and it's become available with the help of Validator interface.

In the world of software development radiobuttons are essential part of graphic user interface. Spring MVC tag library provides special tag for this element of form. If to be more precisely there are two tags for this purpose: radiobutton, radiobuttons. Both of them are useful for a particular task. As you understand I'm going to show how to use these tags in the post.

Spring MVC checkbox I have already published the post about processing of 'checkbox' tag using Spring MVC tag library. Now I want to develop this theme and proceed with the 'checkboxes' tag. It's not much harder, but in some cases you'd better to use it. In this article I will provide examples of Spring 'checkboxes' tag in conjunction with java.util.List and java.util.Map, so be ready to examine two examples.

Close