WADL 的含义
今天我读了维基百科上的 WADL 的描述
Web 应用程序描述语言 (WADL) 是一种基于 XML 的文件 提供基于 HTTP 的 Web 的机器可读描述的格式 应用程序。
这里“基于 HTTP 的 Web 应用程序的机器可读描述”是什么意思?
Today i read the description of WADL from wikipedia
The Web Application Description Language (WADL) is an XML-based file
format that provides a machine-readable description of HTTP-based web
applications.
Here what is the meaning of "Machine readable description of HTTP based web applications"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
机器可读意味着它的编写方式使得程序可以轻松地将其解析为定义良好的结构。
这样像 wadl2java 这样的工具就可以生成“客户端存根”,这是允许程序员与网络交互的源代码应用。
Machine-readable means that it is written in a way that a program can easily parse it into a well-defined structure.
This way tools like wadl2java can generate "client stub", which is source code that allows programmers to interact with the web application.