WADL(REST) 基础

In principle WADL is similar to WSDL, but the structure of the language is much different. Whilst WSDL defines a flat list of messages and operations either consuming or producing some of them, WADL emphasizes the hierarchical nature of RESTful web services. In REST, the primary artifact is the resource. Each resource (noun) is represented as an URI. Every resource can define both CRUD operations (verbs, implemented as HTTP methods) and nested resources. The nested resource has a strong relationship with a parent resource, typically representing an ownership.


入门: http://www.docin.com/p-775458734.html 

JAX-RPC 1.1 --->  JSR 224 JAX-WS: Java Archtecture for XML Web Service

JSR 311 JAX-RS: Java Archtecture for XML RESTful Web Service

视频: http://www.youtube.com/watch?v=hZ2EtAEBpq0 

google WADL complie : https://code.google.com/p/rest-api-code-gen/ 

wadl2java: https://wadl.java.net/ 

    https://wadl.java.net/wadl2java.html 


你可能感兴趣的:(WADL(REST) 基础)