2

PUTタイプを使用してSpringコントローラーにデータを送信するjqueryスクリプトがあります。しかし、コントローラーはヒットしません。すべてに変更PUTするPOSTと期待どおりに動作しますが、正確に使用する必要がありますPUT。私のコードを見直して、私が間違っていることを教えてください。

jQuery

var values = $("form").serialize();
                $.ajax({
                    type: "PUT",
                    url: "/user/" + elogin.val(),
                    async: false,
                    data: values,
                    success: function(resp) {\\doStuff}
                 })

コントローラ

@Controller
@RequestMapping(value = "/user")
public class RestController {

    @RequestMapping(value = "/{userLogin}", method = RequestMethod.PUT)
    @ResponseBody
    public boolean updateUser(@PathVariable String userLogin,
                              @RequestParam("epassword") String password,
                              ...)
            throws ParseException {
        if (...) {
            return false;
        }
        \\doStuff
        return true;
    }
}

FireBug エラー メッセージ

400 Bad Request
Response Headers
Connection  close
Content-Length  1072
Content-Type    text/html;charset=utf-8
Date    Tue, 03 Sep 2013 10:21:28 GMT
Server  Apache-Coyote/1.1

Request Headers
Accept  */*
Accept-Encoding gzip, deflate
Accept-Language en-US,en;q=0.5
Connection  keep-alive
Content-Length  168
Content-Type    application/x-www-form-urlencoded; charset=UTF-8
Cookie  JSESSIONID=5A510B1FB82DA6F3DD9E9FA8D67A8295
Host    localhost:8085
Referer http://localhost:8085/welcome
User-Agent  Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0
X-Requested-With    XMLHttpRequest

エラー

HTTP Status 400 - Required String parameter 'epassword' is not present
type Status report
message Required String parameter 'epassword' is not present
description The request sent by the client was syntactically incorrect.
4

2 に答える 2

2

に追加することで解決web.xml

<filter>
    <filter-name>HttpPutFormContentFilter</filter-name>
    <filter-class>org.springframework.web.filter.HttpPutFormContentFilter</filter-class>
</filter>

<filter-mapping>
    <filter-name>HttpPutFormContentFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
于 2013-09-03T12:07:36.233 に答える
0

こんにちは、正しいかどうかはわかりませんが、jquery ajaxにPUTを使用できないと思います

type (デフォルト: 'GET') タイプ: 文字列 作成するリクエストのタイプ ("POST" または "GET")。デフォルトは "GET" です。注: PUT や DELETE などの他の HTTP 要求メソッドもここで使用できますが、すべてのブラウザーでサポートされているわけではありません。

これをチェックして ください http://api.jquery.com/jQuery.ajax/

于 2013-09-06T12:40:59.783 に答える