English 中文(简体)
CF10 更新的API能做什么呢?冷箱更新的API不能做什么呢?反之亦然?
原标题:What can CF10 RESTful API do that Coldbox RESTful API cannot do? And vise versa?

刚开始看一些MVC JS框架/图书馆, 多数人期望有一个更新的API终点, 这使我思考...使用CF10我能做些什么?

谢谢

最佳回答

恢复的网络服务是一个标准概念, 而所有的实施最终都遵循了这些规范。 已有一些现有的框架, 如 < a href=" http:// affy.riaforge. org" rel=" noreferrer" > Taffy , < a href=" http:// powernap. riaforge.org/" rel=" noreferr" > powernnap 和 ColdBox 3 、 Mach II 等框架, 它们可以帮助在冷冻区创建休息服务。 在完整和赋予用户权能方面, 我的工作非常出色。 区别在于它们是如何提供这些服务的, 如何让你创建服务。 有些人会按照自己的 DSL 等 和 某些功能, 遵循其他公约的配置 。

ColdFusion 10有本地的网络服务支持。

  1. You can use your own understanding of components and extend them as restful webservices
  2. Based on standard JAX-RS
    • Tons of support/ applications available for extending (testing/automation)....
    • No implementation biasness, widely available/acceptable
  3. Better performance
  4. Better support and doc
  5. Less configuration
  6. Application WADL implmented (WSDL like)
  7. Full JSON/XML support and easily extensible

正如你们将看到的那样,大多数这些好处是,语言可以“原始”使用,而不是相对特征的比较,这就是为什么我们执行了它的原因。海事组织根本没有任何比较。我希望所有框架都能利用本地的特征,并以此为基础发展。

缩略图规则应该是CF10前使用适合你口味的任何一种,使用本可使用的CF10释放/后CF10释放,或使用同一框架的任何框架。

谨慎一点:每一个框架作者都会偏向于他们自己的判断,然后你才跳跃。

p.s. 我在冷冻区实施了休息支持10:)

问题回答

因为休息的折叠纸一般只是您模型的包装纸, 如果您的模型已经用冷箱这样的折叠框架创建, 您可能最好使用框架来实施一个可重整的网络服务( ReSTful Web service) 。

如果您是从零开始, CF10 (和 Railo 4) 中新添加的功能将为您提供基础设施,而无需承担应用框架的间接费用。

绝佳资源:https://github.com/attle/CF-REST-Comparisson/tree/master/CF10

<强度 > 要求/Quirks

  • All remote methods must have returnType="..." specified (where ... is the type that will be returned).
  • Don t forget restArgSource for <cfargument/> tags for URI-token arguments. The default value for restArgSource is body, which will not work if you re trying to get a value from the URI.
  • Application-specific mappings are not supported. Use server-mappings or the fully-qualified cfc path instead.
  • Whenever refreshing services, I always follow this workflow: Delete "exception.log" from the log files screen Refresh REST services Check to see if "exception.log" is back. (If so, read it and address the problem.)




相关问题
Allow RESTful DELETE method in asp.net mvc?

im currently setting up asp.net to accept DELETE http verb in the application. However, when i send "DELETE /posts/delete/1" i always get a 405 Method not allow error. I tried to take a look at ...

Most appropriate API for URL shortening service

I ve just finished an online service for shortening URLs (in php5 with Zend Framework); you can enter an URL and you get an short URL (like tinyurl and such sites). I m thinking about the API for ...

Use HTTPClient or HttpUrlConnection? [closed]

We re implementing a REST client on JRE 1.4. Seems two good options for a client REST framework are HttpClient and HttpUrlConnection. Is there a reason to use HttpClient over the JRE s ...

Why can t I find the truststore for an SSL handshake?

I m using the Spring RESTTemplate on the client side to make calls to a REST endpoint. The client in this case is a Spring app and Tomcat is the servlet container. I m running into issues making a ...

Which Http redirects status code to use?

friendfeed.com uses 302. bit.ly uses 301. I had decided to use 303. Do they behave differently in terms of support by browsers ?

Three Step Buyonline The RESTful way

We are re-developing our buyonline functionality and we are doing it the RESTful way. The process is a three step one and the customer is asked to enter data at each step. Let s say the three URL s ...

热门标签