Странност на „непозволения метод“ на Grails

Имам прост контролен код като:

// UserController.groovy

class UserController {

    static allowedMethods = [
            signIn:       'GET',
            authenticate: 'POST',
            signOut:      'POST',
            register:     'GET',
            save:         'POST'
    ]

    // ... code omitted

    def register() { }

    def save() {
        render 'ok'
    }
}

Формуляр за регистрация:

<!-- register.gsp -->
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="layout" content="main" />
    <title>Withme: Register</title>
</head>
<body>
    <g:form mapping="register">
        <!-- Code omitted -->
        <g:actionSubmit value="Register" />
    </g:form>
</body>
</html>

И съпоставяне на URL адреси:

//UrlMappings.groovy

class UrlMappings {
    static mappings = { 
        name register: '/register'(controller: 'user') {
            action = [GET: 'register', POST: 'save']
        }
    }
}

Сега за странната част. Когато правите заявка с curl, всичко работи според очакванията:

$ curl http://localhost:8080/withme/register -X GET -v -L
... form rendered ...

$ curl http://localhost:8080/withme/register -X POST -v -L
< HTTP/1.1 200 OK
< Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
< Transfer-Encoding: chunked
< Date: Thu, 08 Aug 2013 07:41:23 GMT
< 
* Connection #0 to host localhost left intact
ok* Closing connection #0 

Достъпът до /register с браузър връща формуляра. Но когато го изпратя в браузър, 405 се върна!

HTTP Status 405 -

type Status report

message

description The specified HTTP method is not allowed for the requested resource.
Apache Tomcat/7.0.42

Firebug потвърждава, че POST е изпълнен:

POST http://localhost:8080/withme/register | 405 Method Not Allowed | localhost:8080

Деактивирах всички филтри в приложението си.

Чудя се каква е разликата между curl и POST заявките на браузъра? Защо Grails го обработва по различен начин? И накрая, как да го поправя..

Grails 2.2.4 Groovy Версия: 2.1.6 JVM: 1.7.0_21 Доставчик: Oracle Corporation ОС: Mac OS X

Актуализация

Разбрах, че тялото на заявката има значение. Изпращането на заявка с curl без тяло е успешно, но настройката на тялото води до неуспех на заявката. добър:

$ curl http://localhost:8080/withme/register -X POST -v -L
* About to connect() to localhost port 8080 (#0)
*   Trying ::1...
* connected
* Connected to localhost (::1) port 8080 (#0)
> POST /withme/register HTTP/1.1
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8x zlib/1.2.5
> Host: localhost:8080
> Accept: */*
> 
< HTTP/1.1 200 OK
< Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
< Transfer-Encoding: chunked
< Date: Thu, 08 Aug 2013 09:39:22 GMT
< 
* Connection #0 to host localhost left intact
ok* Closing connection #0

И една лоша:

$ curl http://localhost:8080/withme/register -X POST -v -L -d "email=&password=&passwordConfirmation=&firstName=&lastName=&country=&city=&_action_Register=Register"
* About to connect() to localhost port 8080 (#0)
*   Trying ::1...
* connected
* Connected to localhost (::1) port 8080 (#0)
> POST /withme/register HTTP/1.1
> User-Agent: curl/7.24.0 (x86_64-apple-darwin12.0) libcurl/7.24.0 OpenSSL/0.9.8x zlib/1.2.5
> Host: localhost:8080
> Accept: */*
> Content-Length: 100
> Content-Type: application/x-www-form-urlencoded
> 
* upload completely sent off: 100 out of 100 bytes
< HTTP/1.1 405 Method Not Allowed
< Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
< Content-Length: 977
< Date: Thu, 08 Aug 2013 09:40:31 GMT
< 
* Connection #0 to host localhost left intact
<html><head><title>Apache Tomcat/7.0.42 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 405 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The specified HTTP method is not allowed for the requested resource.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/7.0.42</h3></body></html>* Closing connection #0

И все пак каква е разликата?


person lambdas    schedule 08.08.2013    source източник


Отговори (1)


Реших странен проблем.

Grails изобразява <g:actionSubmit value="Register" /> като

<input type="submit" value="Register" name="_action_Register">

Обърнете внимание на странното име. Grails го извежда от атрибута value и го използва, когато избира какво действие да извика. Това създава проблем в моя случай, защото POST /register трябва да се обработва от save действие.

Промяната му на <input type="submit" value="Register"> решава проблема.

person lambdas    schedule 08.08.2013
comment
Интересно, но ако имате формуляр с правилното действие, просто използвайте g:submitButton. Както разбрахте, g:actionSubmit ще създаде това магическо име и ще изпрати формуляра ви към друго действие (използвайте, когато имате нужда от действие за изпращане != действие за формуляр). - person ; 08.08.2013
comment
Не бих го нарекъл странен проблем - така работи по документация. - person ikumen; 08.08.2013