| Getting Familiar with Spring MVC start the courserecognize the Spring MVC framework and how to use it to create Spring-based web applicationsrecognize how HTTP requests and responses flow through the Spring MVC architectureset up Maven dependencies needed to create a Spring MVC application
Creating a Spring MVC Application recognize the various components in a Spring MVC application configurationconfigure a web.xml file for a Spring MVC web applicationcreate a servlet configuration xml file for a Spring MVC web applicationcreate Spring MVC controllers using request mappings and handler methodscreate JSP views for use in a Spring MVC applicationconfigure a Spring MVC application to locate and use JSP view filesuse STS to launch and use a Spring MVC application deployed from an Apache Tomcat server
Spring MVC Web Form Basics recognize the Spring form tags that can be used to help create Spring web formscreate a Spring MVC web formvalidate a Spring MVC web formconfigure controller handler methods to map to URLs based on the HTTP request methodupload files in a Spring MVC web application
Using Spring MVC Application Features recognize some of the features that are offered by the Spring MVC frameworkserve static files from a Spring MVC web applicationperform redirects from a Spring MVC web applicationuse @ModelAttribute in a controller to declare a method intended to update the model of a Spring MVC applicationuse @SessionAttribute to add data to the current session of a Spring MVC web applicationuse @CookieValue to work with cookies in a Spring MVC web applicationcreate a Spring MVC web application using a Java-based configuration
Spring MVC Controller Handler Methods recognize some of the arguments and return types we can use when defining Spring MVC handler methodsconfigure Spring MVC handler methods to only map to HTTP requests with certain URL parameters definedconfigure Spring MVC handler methods to only map to HTTP requests where certain headers are definedaccess and use HTTP request parameters from within controller handler methods
Practice: Web Applications and Spring MVC use Spring MVC to create web applications
 |