您好,登錄后才能下訂單哦!
no handler method in class.....
這篇文章的來源于最近新學習的springmvc遇到的問題如上,其實本身感覺springmvc并不是很難,但是苦于學習方法不得勁,就只好看著幫助文檔和別人寫的小例子了。看完別人的小例子照著helloworld跑出來了,但是感覺不明所以,所以我就先放棄了使用注解,全過程使用最原始的XML配置
<!--多方法解析器-->
<bean id="parameterMethodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
<property name="paramName" value="method"/>
</bean>
<!-- action代理類 -->
<bean id="student" class="org.springframework.web.servlet.mvc.multiaction.MultiActionController">
<property name="methodNameResolver" ref="parameterMethodNameResolver"/>
<property name="delegate" ref="studentController"/>
</bean>
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="stu.do">student</prop>
</props>
</property>
</bean>
錯誤原因是因為注入delegate的時候它會檢查action里邊的請求方法是不是含有(HttpServletRequest,HttpServletResponse)沒有就會拋出異常
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。