标签:
这篇文章讲的还是映射器,映射器类有两种,前一篇文章讲的是BeanNameUrlHanderMapping映射器类。今天讲的是SimpleUrlHanderMapping映射器类。
这两个映射器类有什么区别呢?
画个图说明一下:
我们知道映射器类的主要功能是根据url的请求得到相应的Action实例。BeanNameUrlHandlerMapping和SimpleUrHandlerMapping的区别我们通过案例来说明:
我们要实现的功能是:请求(删除用户,修改用户,删除用户,增加用户)都对应到同一个UserAction。
BeanNameUrlHandlerMapping的做法是:
案例结构如下:
UerAtion代码如下:
/** * Create by 沈晓权 * Create on 2016年8月6日下午11:20:04 */ package com.guigu.shen.Action2; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.mvc.Controller; public class UserAction implements Controller { @Override public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception { ModelAndView modelAndView=new ModelAndView(); modelAndView.addObject("message", "增加了一个用户"); modelAndView.setViewName("success"); return modelAndView; } }
springMvc_002.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:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd" > <!-- 控制器(程序员)(必须配置)
BeanNameUrlHandlerMapping的做法是这里必须配四个。
--> <bean name="/adduser.action" class="com.guigu.shen.Action2.UserAction"></bean> <bean name="/deleteuser.action" class="com.guigu.shen.Action2.UserAction"></bean> <bean name="/searchuser.action" class="com.guigu.shen.Action2.UserAction"></bean> <bean name="/updateuser.action" class="com.guigu.shen.Action2.UserAction"></bean> <!-- 映射器 --> <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 配置路径前缀 --> <property name="prefix" value="/jsp/"></property> <!-- 配置路径后缀 --> <property name="suffix" value=".jsp"></property> <!-- 上面的配置方法其实就是前缀+视图逻辑名+后缀=真实路径 --> </bean> </beans>
index.xml代码:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <base href="<%=basePath%>"> <title>My JSP ‘index.jsp‘ starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="This is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css"> --> </head> <body> This is my JSP page. <br> <a href="${pageContext.request.contextPath}/adduser.action">增加用户</a> <a href="${pageContext.request.contextPath}/updateuser.action">修改用户</a> <a href="${pageContext.request.contextPath}/searchuser.action">查询用户</a> <a href="${pageContext.request.contextPath}/deleteuser.action">删除用户</a> </body> </html>
运行:输入http://127.0.0.1:8080/SpringMvc_10day_self/
结果都是对的。
但是想上面一样,为了让多个请求对应同一个Action处理类,写了四个bean,太麻烦了,所以换种映射器类,采用SimpleUrlHanderMapping来做:
如下l
除了修改springmvc_002.xml之外。其他都不用修改。
springmvc_002.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:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd" > <!-- 控制器(程序员)(必须配置) --> <bean id="userActionID" class="com.guigu.shen.Action2.UserAction"></bean> <!-- 映射器 与之前的BeanNameUrlHanderMapping不同这次采用的是SimpleUrlHandlerMapping映射器。 --> <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="mappings"> <props> <!-- 依次写四个请求。并把之前的 <bean id="userActionID" class="com.guigu.shen.Action2.UserAction"></bean> 的id写入 --> <prop key="/adduser.action">userActionID</prop> <prop key="/deleteuser.action">userActionID</prop> <prop key="/searchuser.action">userActionID</prop> <prop key="/updateuser.action">userActionID</prop> </props> </property> </bean> <!-- 如果Action汇总书写的是视图逻辑名称,那么视图解析器就必须配置(解释一下什么是视图逻辑名称:就是类似Struts2中的,"success") 如果Action中配置的是视图真实名称,那么视图解析器就可选配置(解释一下什么是视图真实名称,就是"/jsp/success.jsp") --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 配置路径前缀 --> <property name="prefix" value="/jsp/"></property> <!-- 配置路径后缀 --> <property name="suffix" value=".jsp"></property> <!-- 上面的配置方法其实就是前缀+视图逻辑名+后缀=真实路径 --> </bean> </beans>
05SpringMvc_映射器SimpleUrlHanderMapping
标签:
原文地址:http://www.cnblogs.com/shenxiaoquan/p/5746046.html