I noticed that in the security XML config you cannot put "PATCH" as the HTTP method (just the regular POST, GET, PUT, DELETE), etc.
Are there any plans to allow the new PATCH method in the XML schema?Code:<intercept-url pattern="/**" access="ROLE_UPDATE" method="PATCH"/>
RoR has already moved to PATCH as their primary HTTP method for update operations:
http://weblog.rubyonrails.org/2012/2...d-for-updates/
and it is trivial to add PATCH support to JAX-RS as well:
Code:@Target({ ElementType.METHOD }) @Retention(RetentionPolicy.RUNTIME) @HttpMethod("PATCH") public @interface PATCH {}


Reply With Quote