springMV中的view-controller的作用
先來看一段程式碼,下面這段程式碼的作用是在Controller中實現一個頁面的跳轉功能。
-
@Controller
-
@RequestMapping("index")
-
public class TestController {
-
/**
-
* @Title: toIndex
-
* @Description: 實現頁面跳轉功能
-
* @return
-
*/
-
@RequestMapping("toIndex")
-
public String toIndex(){
-
return "index";
-
}
-
}
在平常的開發過程中我們經常使用這種方式來實現頁面之間的跳轉,這樣的沒有任何業務邏輯的頁面跳轉功能,需要我們定義一個請求類或請求方法來實現這一功能,頁面跳轉管理起來比較混亂,並且每個Controller類中都有分佈,查詢起來比較困難、浪費時間。
基於對上面的程式碼的分析,我想到了使用mvc名稱空間中的view-controller這個屬性來定義這樣的一個頁面跳轉功能。
使用<mvc:view-controller path="" view-name=""/>方式配置頁面的跳轉,配置如下:
<mvc:view-controller path="/index/toIndex.do" view-name="index"/>
path:指的是請求的路徑,
view-name:返回的檢視名字(檢視直譯器 配置的檔案目錄的名字)
-
<beans xmlns="http://www.springframework.org/schema/beans"
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
-
xmlns:context="http://www.springframework.org/schema/context"
-
xmlns:aop="http://www.springframework.org/schema/aop"
-
xmlns:tx="http://www.springframework.org/schema/tx"
-
xmlns:task="http://www.springframework.org/schema/task"
-
xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
-
xsi:schemaLocation="http://www.springframework.org/schema/beans
-
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
-
http://www.springframework.org/schema/mvc
-
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
-
http://www.springframework.org/schema/context
-
http://www.springframework.org/schema/context/spring-context-4.0.xsd
-
http://www.springframework.org/schema/aop
-
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
-
http://www.springframework.org/schema/tx
-
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
-
http://www.springframework.org/schema/task
-
http://www.springframework.org/schema/task/spring-task-4.0.xsd
-
http://code.alibabatech.com/schema/dubbo
-
http://code.alibabatech.com/schema/dubbo/dubbo.xsd">
-
<mvc:view-controller path="/index/toIndex.do" view-name="index"/>
-
<!-- 檢視直譯器 -->
-
<bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
-
<property name="prefix" value="/WEB-INF/views/"/>
-
<property name="suffix" value=".jsp"/>
-
</bean>
-
</beans>
上面在xml中的配置方式,可以省去了程式碼的編寫,可以把相同模組的頁面跳轉統一的放在一起,進行這個得配置,方便以後的管理。
<mvc:view-controller path="" view-name=""/>也可以通過程式進行配置,通過專案啟動的時候載入 path和view-name的對映關係
-
@Configuration
-
@EnableWebMvc
-
public classWebConfig extendsWebMvcConfigurerAdapter {
-
@Override
-
public voidaddViewControllers(ViewControllerRegistry registry) {
-
registry.addViewController("/index/toIndex.do").setViewName("index");
-
}
-
}
上面這個中程式配置方式生效的前提是@Configuration 這個註解必須生效,可以使用<context:component-scan base-package="" />載入這個類中的註解。