Grails: Overriding the HTTP Method

gitSome browsers, clients, networks, firefwalls, etc. don’t allow HTTP methods beyond GET and POST.  With Grails you can get around this by POSTing an additional parameter ‘_method‘ which will be used to override the request’s HTTP Method/Verb.

If you post with an additional Parameter of ‘_method‘ (or the X-HTTP-Method-Override header if the ‘_method‘ parameter isn’t present) Grails will internally route it correctly using the value of that parameter (or header).  This is helpful when doing RESTful services or clean URLs that map to HTTP methods.

This is helpful if you are using a client that restricts HTTP verbs like Flex used to (still does?) or other browsers.  In fact the <a title="g:form Tag" href="http://www.grails.org/doc/latest/ref/Tags/form.html">&lt;g:form&gt; tag</a> will add the extra _method parameter for you if you use a method other than GET or POST.  This is something to keep in mind when doing Ajax or using alternative clients.

Hidden in chapter 13 of the documentation is one paragraph about this:

&lt;g:form controller="book" method="DELETE"&gt;
&nbsp; ...
&lt;/g:form&gt;

Grails will send a hidden parameter called _method, which will be used as the request’s HTTP method. Another alternative for changing the method for non-browser clients is to use the X-HTTP-Method-Override to specify the alternative method name.

About the Author

Object Partners profile.

One thought on “Grails: Overriding the HTTP Method

  1. Pingback: » Blog Archive
Leave a Reply

Your email address will not be published.

Related Blog Posts
Natively Compiled Java on Google App Engine
Google App Engine is a platform-as-a-service product that is marketed as a way to get your applications into the cloud without necessarily knowing all of the infrastructure bits and pieces to do so. Google App […]
Building Better Data Visualization Experiences: Part 2 of 2
If you don't have a Ph.D. in data science, the raw data might be difficult to comprehend. This is where data visualization comes in.
Unleashing Feature Flags onto Kafka Consumers
Feature flags are a tool to strategically enable or disable functionality at runtime. They are often used to drive different user experiences but can also be useful in real-time data systems. In this post, we’ll […]
A security model for developers
Software security is more important than ever, but developing secure applications is more confusing than ever. TLS, mTLS, RBAC, SAML, OAUTH, OWASP, GDPR, SASL, RSA, JWT, cookie, attack vector, DDoS, firewall, VPN, security groups, exploit, […]