————吾亦无他,唯手熟尔,谦卑若愚,好学若饥————-
上次的以继承MultiActionController可以实现一个处理器中多个处理方法,但是局限出来了,他们的url访问地址只能是与方法名称相同的,因为他默认的方法名称解析器是InternalPathMethodNameResolver****
如果我们想为了程序的安全甚至更多考虑(从url简洁啊,同名啊,等等)所以引入了一个叫PropertiesMethodNameResolver属性方法名称解析器的这个东西
我说一下使用在上一个案例基础上使用的步骤
1.在配置文件中写一个bean定义这个PropertiesMethodNameResolver这个属性方法名称解析器
2.在自定义的继承MultiActionController的类的bean中注入上面的步骤一配置的那个方法名称解析器
具体使用,我给俩段代码就够了
继承MultiActionContoller的类,我的类名和源码在下面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 1package cn.dawn.day05multiActioncontroller;
2
3import org.springframework.web.servlet.ModelAndView;
4import org.springframework.web.servlet.mvc.multiaction.MultiActionController;
5
6import javax.servlet.http.HttpServletRequest;
7import javax.servlet.http.HttpServletResponse;
8
9/**
10 * Created by Dawn on 2018/3/23.
11 */
12public class MyMultiActionController extends MultiActionController{
13
14 public String doFirst(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
15 ModelAndView me=new ModelAndView();
16 me.setViewName("first");
17 return "first";
18 }
19
20 public ModelAndView doSecond(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
21 ModelAndView me=new ModelAndView();
22 me.setViewName("second");
23 return me;
24 }
25}
26
在自己的xml配置文件中,俩步骤,我标出来
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
5
6 <!--配置bean处理器-->
7 <bean id="myMultiActionController" class="cn.dawn.day05multiActioncontroller.MyMultiActionController">
8 <!--第二步=========注入方法名称解析器-->
9 <property name="methodNameResolver" ref="propertiesMethodNameResolver"></property>
10 </bean>
11 <!--视图解析器-->
12 <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
13 <property name="prefix" value="/"></property>
14 <property name="suffix" value=".jsp"></property>
15 </bean>
16
17 <!--第一步=======属性方法名称解析器-->
18 <bean id="propertiesMethodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.PropertiesMethodNameResolver">
19 <property name="mappings">
20 <props>
21 <prop key="/doone">doFirst</prop>
22 <prop key="/dotwo">doSecond</prop>
23 </props>
24 </property>
25 </bean>
26
27 <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
28 <!--第一种方式-->
29 <property name="urlMap">
30 <map>
31 <!--这儿需要改成/*,而不是之前写死的那种-->
32 <entry key="/*">
33 <value>myMultiActionController</value>
34 </entry>
35 </map>
36 </property>
37 </bean>
38
39</beans>
40
然后你网页访问的url地址就是那里那个key的值,
此处需要注意的是first.jsp和second.jsp你准备了吗?
web.xml你指向的xml配置文件改了吗?