SpringMVC入門

SpirngMVC:是一個常用的表現層的框架,用於我們在web開發中,常用的參數傳遞,請求接收,請求響應,頁面跳轉等常用功能。

 

 

SpringMVC的處理流程

 

 

springMVC的執行流程

 

        框架結構

 

 

 

        架構流程

1、  用戶發送請求至前端控制器DispatcherServlet

2、  DispatcherServlet收到請求調用HandlerMapping處理器映射器。

3、  處理器映射器根據請求url找到具體的處理器,生成處理器對象及處理器攔截器(如果有則生成)一併返回給DispatcherServlet。

4、  DispatcherServlet通過HandlerAdapter處理器適配器調用處理器

5、  執行處理器(Controller,也叫後端控制器)。

6、  Controller執行完成返回ModelAndView

7、  HandlerAdapter將controller執行結果ModelAndView返回給DispatcherServlet

8、  DispatcherServlet將ModelAndView傳給ViewReslover視圖解析器

9、  ViewReslover解析後返回具體View

10、DispatcherServlet對View進行渲染視圖(即將模型數據填充至視圖中)。

11、DispatcherServlet響應用戶

 


 

 

組件說明

 

  DispatcherServlet:前端控制器

用戶請求到達前端控制器,它就相當於mvc模式中的c,dispatcherServlet是整個流程控制的中心,由它調用其它組件處理用戶的請求,dispatcherServlet的存在降低了組件之間的耦合性。

  HandlerMapping:處理器映射器

HandlerMapping負責根據用戶請求找到Handler即處理器,springmvc提供了不同的映射器實現不同的映射方式,例如:配置文件方式,實現接口方式,註解方式等。

  Handler:處理器

Handler 是繼DispatcherServlet前端控制器的後端控制器,在DispatcherServlet的控制下Handler對具體的用戶請求進行處理。

由於Handler涉及到具體的用戶業務請求,所以一般情況需要程序員根據業務需求開發Handler。

  HandlAdapter:處理器適配器

通過HandlerAdapter對處理器進行執行,這是適配器模式的應用,通過擴展適配器可以對更多類型的處理器進行執行。

  View Resolver:視圖解析器

View Resolver負責將處理結果生成View視圖,View Resolver首先根據邏輯視圖名解析成物理視圖名即具體的頁面地址,再生成View視圖對象,最後對View進行渲染將處理結果通過頁面展示給用戶。

  View:視圖

springmvc框架提供了很多的View視圖類型的支持,包括:jstlView、freemarkerView、pdfView等。我們最常用的視圖就是jsp。

 

一般情況下需要通過頁面標籤或頁面模版技術將模型數據通過頁面展示給用戶,需要由程序員根據業務需求開發具體的頁面。

 

說明:在springmvc的各個組件中,處理器映射器、處理器適配器、視圖解析器稱爲springmvc的三大組件。

需要用戶開放的組件有handler、view

 

 

 

組件掃描器

 

使用組件掃描器省去在spring容器配置每個controller類的繁瑣。使用<context:component-scan>自動掃描標記@controller的控制器類

 

   <!-- 掃描controller註解,多個包中間使用半角逗號分隔 -->    <context:component-scan base-package="springmvc.controller.demo"/>

 

RequestMappingHandlerMapping

 

註解式處理器映射器,對類中標記@ResquestMapping的方法進行映射,根據ResquestMapping定義的url匹配ResquestMapping標記的方法,匹配成功返回HandlerMethod對象給前端控制器,HandlerMethod對象中封裝url對應的方法Method。

 

從spring3.1版本開始,廢除了DefaultAnnotationHandlerMapping的使用,推薦使用RequestMappingHandlerMapping完成註解式處理器映射。

 

   <!--註解映射器 -->    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping"/>

 

註解描述:

@RequestMapping:定義請求url到處理器功能方法的映射

 

 

RequestMappingHandlerAdapter

        註解式處理器適配器,對標記@ResquestMapping的方法進行適配。

 

        從spring3.1版本開始,廢除了AnnotationMethodHandlerAdapter的使用,推薦使用RequestMappingHandlerAdapter完成註解式處理器適配。

 

   <!--註解適配器 -->    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"/>

 

    <mvc:annotation-driven>

 

  springmvc使用<mvc:annotation-driven>自動加載RequestMappingHandlerMapping和RequestMappingHandlerAdapter,可用在springmvc.xml配置文件中使用<mvc:annotation-driven>替代註解處理器和適配器的配置

 

視圖解析器

 

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

        InternalResourceViewResolver:支持JSP視圖解析

        viewClass:JstlView表示JSP模板頁面需要使用JSTL標籤庫,所以classpath中必須包含jstl的相關jar 包。此屬性可以不設置,默認爲JstlView。

        prefix 和suffix:查找視圖頁面的前綴和後綴,最終視圖的址爲:

        前綴+邏輯視圖名+後綴邏輯視圖名需要在controller中返回ModelAndView指定,比如邏輯視圖名爲hello,則最終返回的jsp視圖地址 “WEB-INF/jsp/hello.jsp”

 



 

 

springMVC的入門案例

 

    第一步:創建eclipseWEB工程

    第二步:導入springMVC必須依賴的jar包

 

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
     <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-expression</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aspects</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context-support</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
<!-- <dependency>
            <groupId>javax.servlet.jsp.jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency> -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
        <version>4.2.4.RELEASE</version>
    </dependency>
      
     <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
    </dependency>
    
    <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>3.0-alpha-1</version>
            <scope>provided</scope>
        </dependency>
        
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
            <scope>provided</scope>
        </dependency>
  </dependencies>
<build>  
    <plugins>  
        <plugin>  
            <groupId>org.apache.maven.plugins</groupId>  
            <artifactId>maven-compiler-plugin</artifactId>  
            <configuration>  
                <source>1.8</source>
                <target>1.8</target>  
            </configuration>  
        </plugin>  
    </plugins>  
</build>

 

 

    第三步:創建springmvc.xml並且進行配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:c="http://www.springframework.org/schema/c"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="
               http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:component-scan base-package="springmvc.controller"></context:component-scan>
            
    <mvc:annotation-driven></mvc:annotation-driven>        
            
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>        
            
</beans>

 

 第四步:配置web.xml

<!-- The front controller of this Spring Web application, responsible for handling all application requests -->
    <servlet>
        <servlet-name>springDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- Map all requests to the DispatcherServlet for handling -->
    <servlet-mapping>
        <servlet-name>springDispatcherServlet</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>


 

    第五步:定義pojo對象

public class Items {
    private int id;
    private String name;
    private Double price;
    private Date createtime;
    private String detail;
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public Double getPrice() {
        return price;
    }
    public void setPrice(Double price) {
        this.price = price;
    }
    public Date getCreatetime() {
        return createtime;
    }
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
    public String getDetail() {
        return detail;
    }
    public void setDetail(String detail) {
        this.detail = detail;
    }
    public Items(int id, String name, Double price, Date createtime, String detail) {
        super();
        this.id = id;
        this.name = name;
        this.price = price;
        this.createtime = createtime;
        this.detail = detail;
    }
    public Items() {
        super();
    }    
}


 

 

 

    第六步:編寫controller層代碼

@Controller
public class ItemController {
    /**
     * 在springMVC當中,通過ModelAndView這個對象來表示模型和視圖的一個映射關係
     * @return
     * @RequestMapping  這個註解的作用就是將我們的請求與我們執行的方法進行映射
     */

    @RequestMapping("/itemList.action")
    public ModelAndView skipToList(){        
        ModelAndView view = new ModelAndView();
        view.setViewName("itemList");//通過setViewName來指定我們要跳轉的jsp頁面
        
        List<Items> list = new ArrayList<>();
        
        Items items = new Items();
        items.setId(1);
        items.setCreatetime(new Date());
        items.setDetail("這是我的惠普電腦... ...");
        items.setName("電腦1");
        items.setPrice(6000d);
        
        Items items2 = new Items();
        items2.setId(1);
        items2.setCreatetime(new Date());
        items2.setDetail("這是我的黑色電腦... ...");
        items2.setName("電腦2");
        items2.setPrice(6000d);
        
        Items items3 = new Items();
        items3.setId(1);
        items3.setCreatetime(new Date());
        items3.setDetail("這是我的電腦... ...");
        items3.setName("電腦3");
        items3.setPrice(6000d);
        
        list.add(items);
        list.add(items2);
        list.add(items3);
        
        view.addObject("itemList", list);//addObject這個方法就相當於把我們的數據封裝到我們的request域當中去        
        return view;
    }
}


 

 

    第七步:訪問測試

 

        將我們的項目加入到tomcat當中,並啓動tomcat

        訪問測試http://localhost:8080/springmvc/itemList.do

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章