controller接收不到put请求的参数


  
    HiddenHttpMethodFilter
    org.springframework.web.filter.HiddenHttpMethodFilter
  
  
    HiddenHttpMethodFilter
    springMvc
  


    httpPutFormcontentFilter
    org.springframework.web.filter.HttpPutFormContentFilter
  
  
    httpPutFormcontentFilter
    springMvc
  
... springMvc servlet省略
  1. 缺少第一个,接收不到put,delete请求
  2. 缺少第二个,可以获取到伪装的表单put请求的参数,但是不能获取到type为put的ajax提交的参数

你可能感兴趣的:(controller接收不到put请求的参数)