有没有生成 WADL 文件的工具?
我已经构建了一个 RESTful Web 服务(我使用的是 asp.net 4、MVC 2),并且我想公开 WADL。是否有任何内置工具或其他我可以用来构建它的工具?我还不想生成类来使用它,我只是在严格寻找可以生成 WADL 文件本身的东西。
谢谢。
I've built a RESTful web service (I'm using asp.net 4, MVC 2) and I want to expose a WADL. Are there any tools built in or otherwise that I can use to build it? I'm not looking (yet) to generate classes to consume it I'm looking strictly for something that can generate the WADL file itself.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来像 REST 描述 &编译应该可以解决问题。
Looks like REST Describe & Compile should do the trick.
jersey 人员有一个名为
maven-wadl-plugin
的 Maven 插件可以实现这一点。检查另一个问题中的答案:WADL 生成工具。
- 一个
There is a maven plugin called
maven-wadl-plugin
by the jersey folks that does the trick.Check the answers in this other question: WADL Generation Tool .
--A