Spring Web, Spring Web Modules, Spring Web Example


 

Spring Web, Spring Web Modules, Spring Web Example

In this section we will discuss about the modules of Spring Web layer.

In this section we will discuss about the modules of Spring Web layer.

Spring Web

In this section we will discuss about the modules of Spring Web layer.

The Spring Web modules allows the developers to develop/manage web applications using spring framework. Since Spring framework's annotations supports allows the developers to develop fully configured web applications without the use of xml files. This makes the development of web application much easier.

The Spring Web Layer contains following modules:

  1. Web
    This modules is responsible for providing basic web-oriented services to the web application. It provides functionalities such as multipart file-upload and initialization of the Spring IoC container with the help of servlet listener defined in web.xml file. Its also provides support for web remoting.
     
  2. Web-Servlet
    The Web-Servlet module is the implementation of the MVC design pattern for web application.
     
  3. Web-Struts
    The Web-Struts module provides the required classes for the Struts Inegration.
     
  4. Web-Portlet
    The Web-Portlet modules provides the spring's MVC implementations to be used in the Portlet environment.

With the help of many examples we will understand the Spring Web layer modules in details. The Spring Web Layer provides rich set of tools to develop highly scalable and robust web applications.

Here are the examples of Spring Web Layer modules:

Ads