Lightweight REST framework for Java
Do you want to embrace the architecture of the Web and benefit from its simplicity and scalability?
Leverage our innovative REST engine and start blending
... [More] your Web Sites and Web Services into uniform Web Applications! [Less]
Kauri is a Java-based framework for RESTful (web) application development. It's based on Restlet, jQuery, Maven, Spring and the sweaty hands of its core development team.
JATComm is an application to use a mobile phone connected to your PC to send SMS messages.
It has three parts:
* Serial Connection - handles the serial connection to the mobile phone using
... [More] RXTX library and sends SMS messages through AT commands.
* SMS Server - a server using RESTlet library to deploy a remote service to send SMS messages.
* SWING client - uses RESTlet to connect to the remote service as a client.
The project supports sending message
messages with a number and message, or using a XML version of a single SMS, or a XML version a batch of SMS messages, all sharing the same prefix. It uses XStream for XML to Object mapping.
The AT code was done for a Motorola V980 mobile phone. [Less]
Tabula is comprised of several subprojects, such as a server and GUI tools.
The framework is based on SOFEA, removing the UI responsibilities from the server to other applications. The server itself
... [More] deals with business logic and persistence, among other issues. In order to expose this functionality, there is a REST service layer, implemented with the RESTlet library. I've created a simple XML format specification to declare and configure the services, allowing for runtime changes. The implementation supports Java and Groovy classes as request handlers.
The main goal of the framework is to reduce app restarts during development as much as possible, while providing a simple environment for prototyping and developing small to medium applications. [Less]
Groovy Restlet is a simple Groovy DSL for constructing Restlet application.
GroovyRestlet is not hosted by Groovy as a Groovy Module, please check
... [More] http://docs.codehaus.org/display/GROOVY/GroovyRestlet for more information
RequirementCurrent build 0.1.0-SNAPSHOT based on following technologies:
Restlet 1.1-SNAPSHOT Slf4J 1.4.3 CGLib 2.1_3 Spring 2.5 commons-lang 2.3
Simple UsageCreate an instance of GroovyRestlet first. GroovyRestlet gr = new GroovyRestlet()If you want Spring support, provide an instance of ApplicationContext as the constructor parameter. GroovyRestlet gr = new GroovyRestlet(appCtx);Preparing your building script using simple GroovyRestlet DSL syntax, for example see SpringIntegrationExamples
Calling GroovyRestlet.build(URI) then done. gr.build(uriToScript) [Less]