SpringMVC第一篇【介紹、入門、工做流程、控制器】

什麼是SpringMVC?

SpringMVC是Spring家族的一員,Spring是將如今開發中流行的組件進行組合而成的一個框架!它用在基於MVC的表現層開發,相似於struts2框架html

這裏寫圖片描述

爲何要使用SpringMVC?

咱們在以前已經學過了Struts2這麼一個基於MVC的框架….那麼咱們已經學會了Struts2,爲啥要要學習SpringMVC呢???java

下面咱們來看一下Struts2不足之處:web

  • 有漏洞【詳細能夠去搜索】
  • 運行速度較慢【比SpringMVC要慢】
  • 配置的內容較多【須要使用Struts.xml文件】
  • 比較重量級

基於這麼一些緣由,而且業內如今SpringMVC已經逐漸把Struts2給替代了…所以咱們學習SpringMVC一方面可以讓咱們跟上業界的潮流框架,一方面SpringMVC確實是很是好用spring

能夠這麼說,Struts2能作的東西,SpringMVC也可以作….express

回顧Struts2開發

在Struts2中,咱們的開發特色是這樣的:瀏覽器

  • Action類繼承着ActionSupport類【若是要使用Struts2提供的額外功能,就要繼承它】
  • Action業務方法老是返回一個字符串,再由Struts2內部經過咱們手寫的Struts.xml配置文件去跳轉到對應的view
  • Action類是多例的,接收Web傳遞過來的參數須要使用實例變量來記住,一般咱們都會寫上set和get方法

Struts2的工做流程

這裏寫圖片描述

  • Struts2接收到request請求
  • 將請求轉向咱們的過濾分批器進行過濾
  • 讀取Struts2對應的配置文件
  • 通過默認的攔截器以後建立對應的Action【多例】
  • 執行完業務方法就返回給response對象

SpringMVC快速入門

導入開發包

前6個是Spring的核心功能包【IOC】,第7個是關於web的包,第8個是SpringMVC包markdown

  • org.springframework.context-3.0.5.RELEASE.jar
  • org.springframework.expression-3.0.5.RELEASE.jar
  • org.springframework.core-3.0.5.RELEASE.jar
  • org.springframework.beans-3.0.5.RELEASE.jar
  • org.springframework.asm-3.0.5.RELEASE.jar
  • commons-logging.jar
  • org.springframework.web-3.0.5.RELEASE.jar
  • org.springframework.web.servlet-3.0.5.RELEASE.jar

編寫Action

Action實現Controller接口mvc

public class HelloAction implements Controller {
    @Override
    public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {
        return null;
    }

}

咱們只要實現handleRequest方法便可,該方法已經說了request和response對象給咱們用了。這是咱們很是熟悉的request和response對象。然而該方法返回的是ModelAndView這麼一個對象,這是和Struts2不一樣的。Struts2返回的是字符串,而SpringMVC返回的是ModelAndViewapp

ModelAndView其實他就是將咱們的視圖路徑和數據封裝起來而已【咱們想要跳轉到哪,把什麼數據存到request域中,設置這個對象的屬性就好了】框架

public class HelloAction implements Controller {
    @Override
    public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {


        ModelAndView modelAndView = new ModelAndView();

        //跳轉到hello.jsp頁面。
        modelAndView.setViewName("/hello.jsp");
        return modelAndView;
    }
}

註冊核心控制器

在Struts2中,咱們想要使用Struts2的功能,那麼就得在web.xml文件中配置過濾器。而咱們使用SpringMVC的話,咱們是在web.xml中配置核心控制器

<!-- 註冊springmvc框架核心控制器 -->
    <servlet>
        <servlet-name>DispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

        <!--到類目錄下尋找咱們的配置文件-->
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:hello.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <!--映射的路徑爲.action-->
        <url-pattern>*.action</url-pattern>
    </servlet-mapping>

建立SpringMVC控制器

咱們在hello.xml配置文件中把SpringMVC的控制器建立出來

<!-- 註冊控制器 name屬性的值表示的是請求的路徑【也就是說,當用戶請求到/helloAction時,就交由HelloAction類進行處理】 -->
    <bean class="HelloAction" name="/hello.action"></bean>

訪問

當咱們在瀏覽器訪問http://localhost:8080/hello.action的時候,Spring會讀取到咱們的訪問路徑,而後對比一下咱們的配置文件中是否有配置/hello.action,若是有。那麼就交由對應的Action類來進行處理。Action類的業務方法將其請求輸出到hello.jsp頁面上。

這裏寫圖片描述


SpringMVC工做流程

這裏寫圖片描述

  • 用戶發送請求
  • 請求交由核心控制器處理
  • 核心控制器找到映射器,映射器看看請求路徑是什麼
  • 核心控制器再找到適配器,看看有哪些類實現了Controller接口
  • 將帶過來的數據進行轉換,格式化等等操做
  • 找到咱們的控制器Action,處理完業務以後返回一個ModelAndView對象
  • 最後經過視圖解析器來對ModelAndView進行解析
  • 跳轉到對應的JSP/html頁面

上面的工做流程中,咱們是沒有講過映射器,適配器,視圖解析器這樣的東西的。可是SpringMVC的環境仍是被咱們搭建起來了。

下面就由我來一個一個來介紹他們是有什麼用的!

映射器

咱們在web.xml中配置規定只要是.action爲後綴的請求都是會通過SpringMVC的核心Servlet

當咱們接收到請求的時候,咱們發現是hello.action,是會通過咱們的核心Servlet的,那麼核心Servlet就會去找有沒有專門的Action類來處理hello.action請求的

也就是說:映射器就是用於處理「什麼樣的請求提交給Action」處理【默承認省略的】…..

其實咱們在快速入門的例子已經配置了:name屬性就是規定了hello.action到HelloAction控制器中處理

<!-- 註冊控制器 name屬性的值表示的是請求的路徑【也就是說,當用戶請求到/helloAction時,就交由HelloAction類進行處理】 -->
    <bean class="HelloAction" name="/hello.action"></bean>

映射器默認的值是這樣的:

<!-- 註冊映射器(handler包)(框架)【可省略】 -->
      <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
      </bean>

固然了,上面咱們在建立控制器的時候【也就是HelloAction】能夠不使用name屬性來指定路徑,可使用咱們的映射器來配置。如如下的代碼:

<bean class="HelloAction" id="helloAction"></bean>

    <!-- 註冊映射器(handler包)(框架) -->
    <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="/hello.action">helloAction</prop>
            </props>
        </property>
    </bean>

當咱們須要多個請求路徑都交由helloAction控制器來處理的話,咱們只要添加prop標籤就好了!

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="/hello.action">helloAction</prop>
                <prop key="/bye.action">helloAction</prop>
            </props>
        </property>
    </bean>

這裏寫圖片描述


適配器

當咱們映射器找到對應的Action來處理請求的時候,核心控制器會讓適配器去找該類是否實現了Controller接口【默承認省略的】

也就是說:適配器就是去找實現了Controller接口的類

<!-- 適配器【可省略】 -->
    <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"></bean>

視圖解析器

咱們把結果封裝到ModelAndView之後,SpringMVC會使用視圖解析器來對ModelAndView進行解析。【默承認省略的】

也有一種狀況是不能省略的。咱們在快速入門的例子中,將結果封裝到ModelAndView中,用的是絕對真實路徑!若是咱們用的是邏輯路徑,那麼就必須對其配置,不然SpringMVC是找不到對應的路徑的。

那什麼是邏輯路徑呢???咱們在Struts2中,返回的是」success」這樣的字符串,從而跳轉到success.jsp這樣的頁面上。咱們就能夠把」success」稱做爲邏輯路徑

在Action中返回hello,hello是一個邏輯路徑。須要咱們使用視圖解析器把邏輯路基補全

public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {


        ModelAndView modelAndView = new ModelAndView();

        //跳轉到hello.jsp頁面。
        modelAndView.setViewName("hello");
        return modelAndView;
    }

若是不使用視圖解析器的話,那麼就會找不到頁面:

這裏寫圖片描述

所以,咱們須要配置視圖解析器

 <!-- 若是Action中書寫的是視圖邏輯名稱,那麼視圖解析器就必須配置 若是Action中書寫的是視圖真實名稱,那麼視圖解析器就可選配置 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 路徑前綴 --> <property name="prefix" value="/"/> <!-- 路徑後綴 --> <property name="suffix" value=".jsp"/> <!-- 前綴+視圖邏輯名+後綴=真實路徑 --> </bean>

控制器

ParameterizableViewController

咱們在以前使用Struts2的時候,若是僅僅要跳轉到某個WEB-INF/JSP頁面,也要寫業務方法。而業務方法也僅僅是返回一個簡單的字符串。

以下的代碼:

public String home(){ return "home"; } 
<package name="nsfw-home" namespace="/nsfw" extends="struts-default">

        <action name="nsfw_*" class="zhongfucheng.nsfw.HomeAction" method="{1}">
            <result name="{1}">/WEB-INF/jsp/nsfw/{1}.jsp</result>
        </action>
    </package>

在SpringMVC中,若是僅僅是跳轉到某個視圖上,咱們能夠省略該Action和業務方法。配置的Action只要繼承着ParameterizableViewController這個類就好了

<!-- 專用於jsp到jsp/html的轉發控制器 -->
    <bean name="/ok.action" class="org.springframework.web.servlet.mvc.ParameterizableViewController">
        <!-- 轉發到真實視圖名 -->
        <property name="viewName" value="/WEB-INF/ok.jsp"/>
    </bean>

這裏寫圖片描述


AbstractCommandController

到目前爲止,咱們都沒有將SpringMVC是怎麼接收web端傳遞過來的參數的。

咱們在Struts2中,只要在Action類上寫對應的成員變量,給出對應的set和get方法。那麼Struts2就會幫咱們把參數封裝到對應的成員變量中,是很是方便的。

那麼咱們在SpringMVC中是怎麼獲取參數的呢????咱們是將Action繼承AbstractCommandController這麼一個類的。

public class HelloAction extends AbstractCommandController {

    @Override
    protected ModelAndView handle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, BindException e) throws Exception {

        return null;
    } 
}

在講解該控制器以前,首先咱們要明白SpringMVC控制器一個與Struts2不一樣的地方:SpringMVC的控制器是單例的,Struts2的控制器是多例的

也就是說:Struts2收集變量是定義成員變量來進行接收,而SpringMVC做爲單例的,是不可能使用成員變量來進行接收的【由於會有多個用戶訪問,就會出現數據不合理性】

那麼SpringMVC做爲單例的,他只能經過方法的參數來進行接收對應的參數只有方法才能保證不一樣的用戶對應不一樣的數據

實體

實體的屬性要和web頁面上的name提交過來的名稱是一致的。這和Struts2是同樣的!

public class User {

    private String id;
    private String username;

    public User() {
    }

    public User(String id, String username) {
        this.id = id;
        this.username = username;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    @Override
    public String toString() {
        return "User{" +
                "id='" + id + '\'' +
                ", username='" + username + '\'' +
                '}';
    }
}

提交參數的JSP

<form action="${pageContext.request.contextPath}/hello.action" method="post">
    <table align="center">
        <tr>
            <td>用戶名:</td>
            <td><input type="text" name="username"></td>
        </tr>
        <tr>
            <td>編號</td>
            <td><input type="text" name="id"></td>
        </tr>
        <tr>
            <td colspan="2">
                <input type="submit" value="提交">
            </td>
        </tr>
    </table>

</form>

配置Action處理請求

<bean class="HelloAction" id="helloAction"></bean>


    <!-- 註冊映射器(handler包)(框架) -->
    <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="/hello.action">helloAction</prop>
            </props>
        </property>
    </bean>

Action接收參數

public class HelloAction extends AbstractCommandController {

    /*設置無參構造器,裏邊調用setCommandClass方法,傳入要封裝的對象*/
    public HelloAction() {
        this.setCommandClass(User.class);
    }

    /** * * @param httpServletRequest * @param httpServletResponse * @param o 這裏的對象就表示已經封裝好的了User對象了。! * @param e * @return * @throws Exception */
    @Override
    protected ModelAndView handle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, BindException e) throws Exception {

        User user = (User) o;

        System.out.println(user);

        ModelAndView modelAndView = new ModelAndView();
        //跳轉到ok.jsp
        modelAndView.setViewName("/WEB-INF/ok.jsp");
        //將數據封裝到ModelAndView中
        modelAndView.addObject("USER", user);
        return modelAndView;
    }
}

效果

這裏寫圖片描述

小總結

這裏寫圖片描述

這裏寫圖片描述

Struts2和SpringMVC存值的區別:

這裏寫圖片描述

相關文章
相關標籤/搜索