1. 程式人生 > >springMV中的view-controller的作用

springMV中的view-controller的作用

先來看一段程式碼,下面這段程式碼的作用是在Controller中實現一個頁面的跳轉功能。

  1. @Controller

  2. @RequestMapping("index")

  3. public class TestController {

  4. /**

  5. * @Title: toIndex

  6. * @Description: 實現頁面跳轉功能

  7. * @return

  8. */

  9. @RequestMapping("toIndex")

  10. public String toIndex(){

  11. return "index";

  12.  
  13. }

  14. }

     在平常的開發過程中我們經常使用這種方式來實現頁面之間的跳轉,這樣的沒有任何業務邏輯的頁面跳轉功能,需要我們定義一個請求類或請求方法來實現這一功能,頁面跳轉管理起來比較混亂,並且每個Controller類中都有分佈,查詢起來比較困難、浪費時間。

       基於對上面的程式碼的分析,我想到了使用mvc名稱空間中的view-controller這個屬性來定義這樣的一個頁面跳轉功能。
使用<mvc:view-controller path="" view-name=""/>方式配置頁面的跳轉,配置如下:
 <mvc:view-controller path="/index/toIndex.do" view-name="index"/>

  path:指的是請求的路徑,

 view-name:返回的檢視名字(檢視直譯器 配置的檔案目錄的名字)

 

 
  1. <beans xmlns="http://www.springframework.org/schema/beans"

  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"

  3. xmlns:context="http://www.springframework.org/schema/context"

  4. xmlns:aop="http://www.springframework.org/schema/aop"

  5. xmlns:tx="http://www.springframework.org/schema/tx"

  6. xmlns:task="http://www.springframework.org/schema/task"

  7. xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"

  8. xsi:schemaLocation="http://www.springframework.org/schema/beans

  9. http://www.springframework.org/schema/beans/spring-beans-4.0.xsd

  10. http://www.springframework.org/schema/mvc

  11. http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd

  12. http://www.springframework.org/schema/context

  13. http://www.springframework.org/schema/context/spring-context-4.0.xsd

  14. http://www.springframework.org/schema/aop

  15. http://www.springframework.org/schema/aop/spring-aop-4.0.xsd

  16. http://www.springframework.org/schema/tx

  17. http://www.springframework.org/schema/tx/spring-tx-4.0.xsd

  18. http://www.springframework.org/schema/task

  19. http://www.springframework.org/schema/task/spring-task-4.0.xsd

  20. http://code.alibabatech.com/schema/dubbo

  21. http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

  22. <mvc:view-controller path="/index/toIndex.do" view-name="index"/>

  23.  
  24. <!-- 檢視直譯器 -->

  25. <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">

  26. <property name="prefix" value="/WEB-INF/views/"/>

  27. <property name="suffix" value=".jsp"/>

  28. </bean>

  29. </beans>

    上面在xml中的配置方式,可以省去了程式碼的編寫,可以把相同模組的頁面跳轉統一的放在一起,進行這個得配置,方便以後的管理。
     <mvc:view-controller path="" view-name=""/>也可以通過程式進行配置,通過專案啟動的時候載入 path和view-name的對映關係

 

 
  1. @Configuration

  2. @EnableWebMvc

  3. public classWebConfig extendsWebMvcConfigurerAdapter {

  4. @Override

  5. public voidaddViewControllers(ViewControllerRegistry registry) {

  6. registry.addViewController("/index/toIndex.do").setViewName("index");

  7. }

  8. }

   上面這個中程式配置方式生效的前提是@Configuration 這個註解必須生效,可以使用<context:component-scan base-package="" />載入這個類中的註解。