-
Notifications
You must be signed in to change notification settings - Fork 38.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comprehensive REST Support [SPR-4419] #9097
Comments
Seth Ladd commented Rob, I'd be very interested in this. Curious what your requirements are for a REST interface? My previous email to the list (which, after checking the list archives, I'm not sure ever got to the list):
One of the nice things about Ruby on Rails is its support for pretty The CRUD operations conform directly to the RESTful HTTP methods. In developing a RESTful framework, I'd love to see a URL Mapper and When talking about a REST framework, I usually mean supported GET, We wrote a RESTful reliable messaging service using Spring, and it was |
Tim Shadel commented While this article claims that there really isn't any framework needs for REST that Spring should provide, <a href=http://microformats.org/discuss/mail/microformats-rest/2005-November/000042.html"">other examples [in Ruby] of useful RESTful framework functionality exist that indicate there is a need for such functionality. I'd be very interested to see Spring's support for REST be similar. |
Rintcius Blok commented When I was looking at rest I stumbled on both this feature request and the following implementation: http://www.restlet.org/ |
Jerome Louvel commented Version 1.0 beta 1 of the Restlet framework was released today. I think the API is quite stable now and it could be a good time to consider an integration with Spring. I would be happy to support such an effort if anyone from the Spring community wants to lead it. |
Jerome Louvel commented Based on the feed-back of several Restlet users, we progressively improved our integration with Spring. We have just added a FAQ entry covering the various integration modes at: You can also check out the Spring extension Javadocs at: If Spring commiters are interested, we would be open to contribute some integration code to facilitate the support of REST directly from Spring. Best regards, |
Kim Pepper commented While Spring MVC can handle a simple implementation, it lacks the support of many REST concepts such as:
Also, does it need to be tied to the Servlet API? |
Kim Pepper commented Actually, I'm not sure whether Spring-WS will be a good base to build this on. The concepts of RPC and REST seem too far apart. How much common code would there be? It might be better to start a new Spring-REST project? |
Arjen Poutsma commented First off, Spring-WS is not RPC, it is XML messaging :). But I agree: the REST support will not be based on the SOAP/POX part of Spring-WS, though we will leverage the XML Marshalling module in there. It is just going to be part of the Spring-WS project. |
Arjen Poutsma commented Change of plan: this is not going to be part of Spring-WS, but of Spring-MVC. |
Oliver Drotbohm commented Is there already a ticket in Sring Core Project for this? I guess it would be to be found in WEB component, won't it? Will the marshalling support currently available with SpringWS also be moved (as it would be usable for rest responses , too)? There is a Google Code project, that seems to have some nice ideas on using MVC controllers and Annotations to provide dedicated support: http://code.google.com/p/polarrose-spring-rest/ Regards, Ollie. |
Arjen Poutsma commented Moved back to Spring Core |
Arjen Poutsma commented Yes, the Object/XML mapping module of Spring-WS will also be moved into the core. |
Daigo Kobayashi commented How does spring team implements REST support? Does spring team has any plan to integrate with JAX-RS(JSR-311)? |
Arjen Poutsma commented Unfortunately, we can't mix-and-match Spring MVC with JAX-RS in a satisfying model, because
This does not rule out the possibility of using a JAX-RS as a backend to Spring MVC, something we are considering. Finally: we are also considering offering JAX-RS support in 3.0/3.1, in the same way we did for JAX-WS in Spring 2.5. |
Arjen Poutsma commented As much as I like the "Comprehensive" in the name of this issue, it's rather difficult to track when it's done :). So I will start creating some sub tasks under this issue, to indicate where we are taking this. |
Hellmut Adolphs commented Guys, I have a couple of questions... if the JAX-RS annotations overlap with Spring MVC, how does this affect spring integration with CXF 2.2 which supports the final version of JSR-311? |
Arjen Poutsma commented Resolving as fixed. More REST related issues will come up, but the overall picture is there. |
Rob Harrop opened SPR-4419 and commented
Sub-tasks:
@RequestMapping
Issue Links:
@RequestMapping
: convention-based URL mapping at controller class levelReferenced from: commits a1545e3
38 votes, 51 watchers
The text was updated successfully, but these errors were encountered: