0

Spring我们有Spring WSSOAP API 的。

我的顾虑 :

  • 我想用 Spring 实现 REST 服务
  • 希望遵循经过验证的最佳实践
  • 想及时交付(避免重做)

有没有类似的(用于Spring FrameworkSOAP API)?REST ServicesSpring WS

我无法找到和的one answer蓝图。RESTful servicesbest practices

(随时发表评论

更新 :

  • 如果我们不需要,framework那么您如何确保您遵循Best Practices
  • 我的意思是,开发人员可能会在不知不觉中错过一些或可能过度使用一些。
  • 那么,为什么我们没有任何用于 REST 的东西,那么应该在哪里引用 void 呢?
4

1 回答 1

1

You don't need a Framework to implement REST Services with Spring, it's just a possibile way to how you can implement Services in Spring.

As the official doc Spring - Creating RESTful services says:

Spring's annotation-based MVC framework serves as the basis for creating RESTful Web Services.

So, if you haven't added spring-web & spring-webmvc dependencies to your project, this can be something you have to do.

于 2013-08-26T07:44:20.727 回答