Spring MVC Hello World project

Tools and Technologies used 1) Eclipse IDE Mars Release (4.5.0) 2) Java 8 3) Spring framework 4.2 4) Tomcat 8 Right click on project explorer and select New Project Select maven project and click on Next Click on Next and select maven web app archetype Enter archetype parameters as below and click on Finish Now […]

Share this article on

Spring MVC form Binding

Spring form tags are defined in the spring-form.tld and they are bundled in spring.jar To use spring form tags, we need to add below taglib directive on top of jsp page. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %> <%@ taglib prefix=”form” uri=”http://www.springframework.org/tags/form” %> where ‘form’ is the tag name prefix you want to use for the tags […]

Share this article on
< Previous Next >