Eclipse Service Release Adds Support for Java7
October 6th, 2011
Just last week the Eclipse group released a service release to their Indigo version, including support for Java 7.
This is from a guest lecture that I delivered to a web-programming class at Bethel University this past month.
Grails Supports REST in various ways: Exposing resources in URL Mappings:
static mappings = { "/product/$id?"(resource:"product") }
Or specifically mapping HTTP Methods to actions
"/product/$id"(controller:"product"){ action = [GET:"show", PUT:"update", DELETE:"delete", POST:"save"] }
Also checkout my post on overriding the HTTP Method with Grails or a more in-depth look at RESTful Grails.
Just last week the Eclipse group released a service release to their Indigo version, including support for Java 7.
Grails gives you the option of overriding the HTTP method via an extra parameter(_method) or a custom HTTP Header(X-HTTP-Method-Override).
A quick peek at some of the new bits in the new Java version 7 from Oracle.
Insert bio here