2

控制器

@Controller
public class Tester {
    @RequestMapping(value="testPost", method = RequestMethod.POST)
    public ModelAndView testPost(){
      ModelAndView _mv = new ModelAndView();
      _mv.setViewName("shared/post");
      return _mv;
    }
}

HTML

<form action="testPost" method="post"> 
    <input type="submit" value="Submit" />
</form>

Web.xml

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>iCubeHRS</display-name>

   <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>

   <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>        
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

   <filter>
        <filter-name>site_mesh</filter-name>
        <filter-class>org.sitemesh.config.ConfigurableSiteMeshFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>site_mesh</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

   <session-config>
        <session-timeout>20</session-timeout>
    </session-config>

</web-app>

问题

一旦将“method”属性设置为“POST”,当你点击提交按钮时,它总是变成405 - 不支持请求方法'POST',如果从控制器中删除方法属性,以及从HTML中删除方法=“post”,它有效,有人知道如何解决这个问题吗?

更新

我想我找到了问题,这个问题是由 sitemesh3 引起的,在我从 web.xml 中删除了 sitemesh3 功能后,POST 工作正常,但我不知道如何解决它。

4

2 回答 2

1

我不确定这是否与您的设置有关,但我遇到了同样的错误(不支持 405-post)

最初我认为它与站点网格有关。但是,当我在我的情况下对其进行更多研究时,这是因为我使用<mvc:resources /> 来提供到装饰器的静态映射。

这是<mvc:resources />因为 sitemesh 试图使用 Post 请求访问它,所以不接受装饰器文件的 post 请求。

我更改了装饰器文件的映射以确保它是静态的并响应 POST 和 GET 请求。更多细节在这里Spring:不接受 mvc:resources 下的 POST 请求?如何解决这个问题

我使用的代码是

<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
 <property name="urlMap">
     <map>
          <entry key="/DecTest/**" 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="/DecTest/" />
      <property name="supportedMethods">
         <list>
            <value>GET</value>
            <value>HEAD</value>
            <value>POST</value>
         </list>
     </property>
     <!-- cacheSeconds: maybe you should set it to zero because of the posts-->
</bean>
于 2013-09-02T21:30:02.810 回答
0

好吧,您发现问题出在sitemesh上。此链接指向将 springMVC 与 sitemesh 集成的项目

于 2013-04-15T10:03:48.543 回答