55

Spring MVC Framework Tutorial

 4 years ago
source link: https://www.tuicool.com/articles/auAzqei
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

Spring MVC helps in building flexible and loosely coupled web applications. The Model-view-controller design pattern helps in seperating the business logic, presentation logic, and navigation logic. Models are responsible for encapsulating the application data. The Views render a response to the user with the help of the model object. Controllers are responsible for receiving the request from the user and calling the back-end services.

The figure below shows the flow of requests in the Spring MVC Framework.

spring-mvc-pic-9.gif

When a request is sent to the Spring MVC Framework the following sequence of events happen.

  • The  DispatcherServlet  first receives the request.
  • The  DispatcherServlet  consults the  HandlerMapping  and invokes the  Controller  associated with the request.
  • The  Controller  processes the request by calling the appropriate service methods and returns a  ModelAndView  object to the  DispatcherServlet . The  ModelAndView  object contains the model data and the view name.
  • The  DispatcherServlet  sends the view name to a  ViewResolver  to find the actual  View  to invoke.
  • Now, the  DispatcherServlet  will pass the model object to the  View  to render the result.
  • The  View ,  with the help of the model data, will render the result back to the user.

To understand the Spring MVC Framework, we will now create a simple Hello-World example using the Eclipse IDE. I am using Eclipse IDE 3.4, Spring IDE plugin, Tomcat 6.0, and Spring 3.0 to demonstrate this example.

Go to File -> New -> Dynamic Web Project to create a web project.

spring-mvc-pic-1.gif

Enter the project name and click the Finish button.

spring-mvc-pic-2.gif

Right-click the project folder, and select Spring Tools -> Add Spring Project Nature to add Spring capabilities to the web project. This feature will be available once you install the Spring IDE.

spring-mvc-pic-3.gif

Create a new package com.vaannila inside the src directory. The Spring controller class extends org.springframework.web.servlet.mvc.AbstractController class. To create a new controller class, right-click the src directory and create a new Java class, enter the controller class name and super class name, and then press the  Finish button. 

spring-mvc-pic-4.gif

Copy the following code inside the HelloWorldController class.

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.AbstractController;

public class HelloWorldController extends AbstractController {

    private String message;

    @Override
    protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception {
        return new ModelAndView("welcomePage","welcomeMessage", message);
    }

    public void setMessage(String message) {
        this.message = message;
    }

}

spring-mvc-pic-10.gif

The DispatcherSevlet , as the name indicates, is a single servlet that manages the entire request-handling process. When a request is sent to the  DispatcherServlet , it delegates the job by invoking the appropriate controllers to process the request. Like any other servlet, the  DispatcherServlet needs to be configured in the web deployment descriptor as shown.

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class> org.springframework.web.servlet.DispatcherServlet </servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.htm</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
        <welcome-file>redirect.jsp</welcome-file>
    </welcome-file-list>
</web-app>

Here, the servlet name is dispatcher . By default, the  DispatcherServlet will look for a file name dispatcher-servlet.xml to load the Spring MVC configuration. This filename is formed by concatenating the servlet name (" dispatcher ") with " -servlet.xml ". Here, we use the the url-pattern as " .htm " in order to hide the implementations technology to the users.

The redirect.jsp will be invoked first when we execute the Spring web application. This is the only jsp file outside the WEB-INF directory, and it is here to provide a redirect to the  DispatcherServlet . All the other views should be stored under the WEB-INF directory so that they can be invoked only through the controller process.

To create a bean configuration file, right-click the WebContent folder and select New -> Other . The following dialog box appears.

spring-mvc-pic-5.gif

Select the Spring Bean Configuration file and click Next

spring-mvc-pic-6.gif

Enter the file name as " dispatcher-servlet.xml " and click the Finish button.

Now that the Spring bean configuration file is created, we need to configure the Controller and the  ViewResolver classes. The following code demonstrates how to do this.

<bean id="viewResolver"
    class=" org.springframework.web.servlet.view. InternalResourceViewResolver" >
        <property name="prefix">
            <value>/WEB-INF/jsp/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>

    <bean name="/welcome.htm" class="com.vaannila.HelloWorldController" >
        <property name="message" value="Hello World!" />
    </bean>

</beans>

First, let's understand how to configure the controller.

<bean name="/welcome.htm" class="com.vaannila.HelloWorldController" >
    <property name="message" value="Hello World!" />
</bean>

Here, the name attribute of the  bean element indicates the URL pattern to map the request. Since the  id attribute can't contain special characters like " / " , we specify the URL pattern using the  name attribute of the  bean element.

By default, the DispatcherServlet uses the  BeanNameUrlHandlerMapping to map the incoming request. The  BeanNameUrlHandlerMapping uses the bean name as the URL pattern. Since  BeanNameUrlHandlerMapping is used by default, you need not do any separate configuration for this.

We set the message attribute of the HelloWorldController class through setter injection. The  HelloWorldController class is configured just like any other  JavaBean class in the Spring application context. So like any other  JavaBean , we can set values to it through dependency injection (DI) .

The redirect.jsp will redirect the request to the  DispatcherServlet , which, in turn, consults with the  BeanNameUrlHandlerMapping and invokes the  HelloWorldController . The   handleRequestInternal() method in the  HelloWorldController class will be invoked. Here, we return the  message property under the name  welcomeMessage and the view name   welcomePage   to the  DispatcherServlet . As of now, we only know the view name, but to find the actual view to invoke, we need a  ViewResolver .

The ViewResolver is configured using the following code.

<bean id="viewResolver"
class=" org.springframework.web.servlet.view.InternalResourceViewResolver" >
    <property name="prefix">
        <value>/WEB-INF/jsp/</value>
    </property>
    <property name="suffix">
        <value>.jsp</value>
    </property>
</bean>

Here, the InternalResourceViewResolver is used to resolve the view name to the actual view. The prefix value + view name + suffix value will give the actual view location. Here, the actual view location is /WEB-INF/jsp/welcomePage.jsp.

The following library files are needed to run the example.

antlr-runtime-3.0
commons-logging-1.0.4
org.springframework.asm-3.0.0.M3
org.springframework.beans-3.0.0.M3
org.springframework.context-3.0.0.M3
org.springframework.context.support-3.0.0.M3
org.springframework.core-3.0.0.M3
org.springframework.expression-3.0.0.M3
org.springframework.web-3.0.0.M3
org.springframework.web.servlet-3.0.0.M3

To execute the example, run the redirect.jsp file. The following page will be displayed.

spring-mvc-pic-7.gif

spring-mvc-pic-8.gifspring-mvc-pic-8.gif

Well, there you have it! You can download and try the Spring MVC example by clicking on the links below.

Source:

War:


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK