Questions tagged [restlet-2.0]

Restlet is a lightweight, comprehensive, open source REST framework for the Java platform. Restlet is suitable for both server and client Web applications.

Restlet is a lightweight, comprehensive, open source REST framework for the Java platform. Restlet is suitable for both server and client Web applications. It supports major Internet transport, data format, and service description standards like HTTP and HTTPS, SMTP, XML, JSON, Atom, and WADL. A GWT port of the client-side library is also available.

227 questions
-1
votes
1 answer

how to receive a json data from url in restlet for @GET in java?

Here is my code public class JustinApplication extends Application { public synchronized Restlet createInboundRoot() { Router router = new Router(); router.attach("/forresource/{id}", JustinResource.class); return router; …
Justin
  • 735
  • 1
  • 15
  • 32
1 2 3
15
16