1. 程式人生 > >在pring框架出現 405 request method post not supported 的解決方法

在pring框架出現 405 request method post not supported 的解決方法

在pring框架中當使用post請求服務,然後請求成功轉到一個靜態檔案,如html,htm等網頁時。頁面出現405 request method post not supported錯誤,只要在spring的配置檔案中加入下面程式碼即可:

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
     <property name="urlMap">
         <map>
              <entry key="/請求的檔案路徑/**" value="myResourceHandler" />
         </map>
     </property>
     <property name="order" value="100000" />       
</bean>


<bean id="myResourceHandler" name="myResourceHandler"
      class="org.springframework.web.servlet.resource.ResourceHttpRequestHandler">
      <property name="locations" value="/請求的檔案路徑/" />
      <property name="supportedMethods">
         <list>
            <value>GET</value>
            <value>HEAD</value>
            <value>POST</value>
         </list>
     </property>
  
</bean>

張北論壇www.zhangbeibbs.com
邢臺論壇www.hbxtbbs.com