springMVC筆記(三)- BeanNameUrlHandlerMapping

來源:互聯網
上載者:User

標籤:

BeanNameUrlHandlerMapping與上一節的SimpleUrlHandlerMapping類似,不同之處在於:前者的bean name就當做url,而後者需要配置url-->bean的映射。

基於上一篇,我們將設定檔改成下面這樣:

 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:p="http://www.springframework.org/schema/p" 4     xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" 5     xsi:schemaLocation=" 6         http://www.springframework.org/schema/beans 7         http://www.springframework.org/schema/beans/spring-beans.xsd 8         http://www.springframework.org/schema/context 9         http://www.springframework.org/schema/context/spring-context.xsd10         http://www.springframework.org/schema/mvc11         http://www.springframework.org/schema/mvc/spring-mvc.xsd">12 13     <context:component-scan base-package="com.springmvc.demo.controller" />14     15     <!-- <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping" />16     <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter" /> -->17     <!-- <mvc:default-servlet-handler/> -->18     <!-- <mvc:annotation-driven /> -->19     <!-- <mvc:resources location="/resource/images/" mapping="/images/**" /> -->20     <bean id="/simpleController" class="com.springmvc.demo.controller.SimpleController"></bean>21     22     <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping">23     </bean>24     25     <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">26         <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />27         <property name="prefix" value="/" />28         <property name="suffix" value=".jsp" />29     </bean>30     31     32 </beans>

可以看到與上面得出的結論是一樣的。

springMVC筆記(三)- BeanNameUrlHandlerMapping

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.