我正在使用Rest服务,我一直在搜索Rest服务发现是如何完成的,但我没有找到任何教程,我发现可以使用WADL或WSDL 2.0版来描述Rest服务。我想了解的是这些描述是如何使用的?例如,如果我有这个WADL描述:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<application xmlns="http://wadl.dev.java.net/2009/02">
<doc xmlns:jersey="http://jersey.java.net/" jersey:generatedBy="Jersey: 2.5-SNAPSHOT 2013-12-20 17:14:21"/>
<grammars/>
<resources base="http://localhost:9998/">
<resource path="country/{id}">
<param xmlns:xs="http://www.w3.org/2001/XMLSchema" type="xs:int" style="template" name="countryId"/>
<method name="GET" id="getCountry">
<response>
<representation mediaType="application/xml"/>
</response>
</method>
</resource>
</resources>
</application>
客户端如何使用服务访问权限?有谁可以帮助我?