本文介绍了如何在WADL中定义变量资源,例如/colours/{colour}?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以定义以下事实:您期望/colours/{colour} URL中使用{colour}作为WADL的一部分?如果是这样,您将如何做?如果不是,这不是对规范的巨大监督吗?
Is it possible to define the fact that you are expecting a {colour} in the /colours/{colour} URL as part of a WADL? If so, how would you do it? If not, isn't this a huge oversight of the spec?
为什么我不能做这样的事情来定义/colours/{colour}:
Why can't I do something like this to define /colours/{colour}:
<resource path="colours" id="Colours">
<resource id="colour" uri="{colour}">
<method name="GET" id="get_colour"/>
</resource>
</resource>
谢谢.
推荐答案
找到了答案: http://cxf.apache.org/docs/jaxrs-services-description.html
您可以将其定义为具有模板样式的参数,例如:
You can define it as a param with a style of template, e.g:
<resource path="colours" id="Colours">
<param name="colour" style="template" required="true"/>
<method name="GET" id="get_colour"/>
</resource>
这篇关于如何在WADL中定义变量资源,例如/colours/{colour}?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!