1. 程式人生 > >SpringMVC實戰(三種映射處理器)

SpringMVC實戰(三種映射處理器)

oca test 機制 -s pre 請求 frame 介紹 html

1.前言

上一篇博客,簡單的介紹了一下SpringMVC的基礎知識,這篇博客來說一下SpringMVC中的幾種映射處理器機制.


2.三種映射處理器

2.1 BeanNameUrlHandlerMapping (默認)

在上一篇實例中,我們通過在springmvc-servlet.xml中就是通過這個默認的映射機制,來找到詳細的處理器的請求.這一般是默認設置,然後通過Bean的名稱,就能夠找到對應的控制器信息.

<?xml version="1.0" encoding="UTF-8"?>
<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"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
		http://www.springframework.org/schema/mvc 
		http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 
		http://www.springframework.org/schema/context 
		http://www.springframework.org/schema/context/spring-context-3.0.xsd 
		http://www.springframework.org/schema/aop 
		http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
		http://www.springframework.org/schema/tx 
		http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">	
		
		
		<!-- 配置文件形式要配置的組建:Controller,handlermapping(有默認規則),viewResolver,interceptor -->		
		<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<!-- 配置從項目根文件夾到一端路徑 -->
			<property name="prefix" value="/WEB-INF/jsp/"/>
			<!-- 文件後綴名稱 -->
			<property name="suffix" value=".jsp"/>
		</bean>
		
		<!-- 配置controller,name為要訪問的控制器的路徑-->
		<bean id="TestController" name="/hello.do" class="com.url.controller.TestController"></bean>
		<!-- BeanNameUrlHandlerMapping 默認配置就是,所以用的時候,就不用配置 -->
		<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean>
		
		
</beans>


2.2 SimpleUrlHandlerMapping(使用簡單的URL來映射)

這樣的方式能夠集中的來為控制器設置訪問時的請求路徑.普通情況下,假設採取XML文件方式配置的話,通過採用這樣的方式

<?

xml version="1.0" encoding="UTF-8"?> <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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd "> <!-- 配置文件形式要配置的組建:Controller,handlermapping(有默認規則),viewResolver,interceptor --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 配置從項目根文件夾到一端路徑 --> <property name="prefix" value="/WEB-INF/jsp/"/> <!-- 文件後綴名稱 --> <property name="suffix" value=".jsp"/> </bean> <!-- 配置controller,name為要訪問的控制器的路徑--> <bean id="TestController" class="com.url.controller.TestController"></bean> <!-- 使用簡單url來映射 --> <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props> <prop key="/hello1.do">TestController</prop> </props> </property> </bean> </beans>



2.3 ControllerClassNameHandlerMapping (控制器名稱訪問)

這樣的方式一般不採用,由於一旦控制器名稱更改的話,訪問路徑也得跟著更改,變動性較大.

<?

xml version="1.0" encoding="UTF-8"?> <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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd "> <!-- 配置文件形式要配置的組建:Controller,handlermapping(有默認規則),viewResolver,interceptor --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 配置從項目根文件夾到一端路徑 --> <property name="prefix" value="/WEB-INF/jsp/"/> <!-- 文件後綴名稱 --> <property name="suffix" value=".jsp"/> </bean> <!-- 配置controller,name為要訪問的控制器的路徑--> <bean id="TestController" class="com.url.controller.TestController"></bean> <!-- 控制類的類名控制器,訪問時類名首字母須要小寫 --> <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"></bean> </bean> </beans>


註意:訪問時,必須使用控制器全程的小寫,否則會報錯.


3.小結

本篇博客簡單的介紹了SpringMVC中的幾種處理映射機制,下篇解說一下,SpringMVC中的幾種控制器.



SpringMVC實戰(三種映射處理器)