1. 程式人生 > >SSM-SpringMVC-11:SpringMVC中ParameterMethodNameResolver參數方法名稱解析器

SSM-SpringMVC-11:SpringMVC中ParameterMethodNameResolver參數方法名稱解析器

地址 string val 1.0 步驟 端口號 pro let enc

------------吾亦無他,唯手熟爾,謙卑若愚,好學若饑-------------

或許曾經的我們也見過一種方式http://localhost:8080/項目名/後臺servlet?actionName=login&uname=admin&upwd=123

這種方式調度servlet並且傳參數,這裏我要表達什麽呢?就是?後面可以拼接內容,

所以,此處的ParameterMethodNameResolver就是通過這種方式來訪問到的方法名的

說一下案例使用步驟

  一,定義ParameterMethodNameResolver參數方法名稱解析器

  二,將上方一定義的方法名稱解析器註入自己定義的處理器的bean中

  三,在處理器映射器SimpleUrlHandlerMapping中將那個訪問的key值,由/*,改為具體值,不能再通配符的方式

案例源碼

  處理器類

package cn.dawn.day05multiActioncontroller;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.multiaction.MultiActionController;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/** * Created by Dawn on 2018/3/23. */ public class MyMultiActionController extends MultiActionController{ public String doFirst(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception { ModelAndView me=new ModelAndView(); me.setViewName("first
"); return "first"; } public ModelAndView doSecond(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception { ModelAndView me=new ModelAndView(); me.setViewName("second"); return me; } }

  

  自己定義的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"
       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">

    <!--配置bean處理器-->
    <bean id="myMultiActionController" class="cn.dawn.day05multiActioncontroller.MyMultiActionController">
        <!--第二步,將參數方法名稱解析器註入-->
        <property name="methodNameResolver" ref="parameterMethodNameResolver"></property>
    </bean>
    <!--視圖解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

    <!--第一步,參數方法名稱解析器-->
    <bean id="parameterMethodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
        <!--這個actionName就是url問號?後面等於號=左邊的那個參數名-->
        <property name="paramName" value="actionName"></property>
    </bean>

    <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <!--第一種方式-->
        <property name="urlMap">
            <map>
                <!--第三步,這兒需要改成/*,而不是之前寫死的那種-->
                <entry key="/doFirst">
                    <value>myMultiActionController</value>
                </entry>
            </map>
        </property>
        
    </bean>

</beans>

  按照此配置方法,你的訪問url為http://ip地址:tomcat端口號/項目名/處理器映射器配的key值?actionName=你處理器中的方法名

註意檢查你有沒有我上面的first.jsp和second.jsp頁面,和web.xml有沒有將自己最後寫的xml配置文件引用上

SSM-SpringMVC-11:SpringMVC中ParameterMethodNameResolver參數方法名稱解析器