Projects tagged ‘jax-rs’


[13 total ]

26 Users
   

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]
Created over 3 years ago.

8 Users
   

Framework for building RESTful Web Services in Java. Reference implementation of JAX-RS: Java API for RESTful Web Services (JSR-311).
Created over 2 years ago.

3 Users

Apache Wink is a project that enables development and consumption of REST style web services. The core server runtime is based on the JAX-RS (JSR 311) standard. The project also introduces a client ... [More] runtime which can leverage certain components of the server-side runtime. Apache Wink will deliver component technology that can be easily integrated into a variety of environments. [Less]
Created 5 months ago.

2 Users

Introductiongrails-jaxrs is a Grails plugin that supports the development of RESTful web services based on the Java API for RESTful Web Services (JSR 311: JAX-RS). It is targeted at developers who ... [More] want to structure the web service layer of an application in a JSR 311 compatible way but still want to continue to use Grails' powerful features such as GORM, automated XML marshalling, Grails filters and so on. This plugin is an alternative to Grails' built-in mechanism for implementing RESTful web services. At the moment, plugin users may choose between Jersey (version 1.1.1-ea) and Restlet (version 2.0-m4) as JAX-RS implementations. Both implementations are packaged with the plugin. Support for Restlet was added in version 0.2 of the plugin in order to support deployments to Google App Engine. Other JAX-RS implementations such as RestEasy or Apache Wink are likely to be added in upcoming versions of the plugin. Please let us know if you'd like to have them added. FeaturesMakes the JSR 311 (JAX-RS) available to Grails applications for developing RESTful web services. New Grails artefact types, Resource and Provider, for JAX-RS classes. JAX-RS Resource classes under grails-app/resources are auto-detected and can be modified at runtime. JAX-RS Provider classes under grails-app/providers are auto-detected and can be modified at runtime. Extended Grails command line interface Create new resources and unit test templates via grails create-resource . Generate ready-to-use resources from domain objects (scaffolding) via grails generate-resources (early access). Ability to use any Grails feature within JAX-RS resources and providers such as GORM can be for interacting with persistent domain objects. Grails filters for intercepting requests to JAX-RS resources. Grails services which can be auto-injected by name. The plugin implements special JAX-RS providers for converting between XML and Grails domain objects. Plugin users may choose between Jersey and Restlet as JAX-RS implementations by means of configuration. grails-jaxrs applications can be deployed to Google App Engine (GAE) when using Restlet. Jersey currently doesn't run on GAE. Getting startedIf you've used version 0.1 before make sure to read the upgrade notes. Detailed installation instructions can be found on the InstallationInstructions page. First steps with the grails-jaxrs plugin are described in the GettingStarted guide. Advanced grails-jaxrs features are described on the AdvancedFeatures page. [Less]
Created 4 months ago.

1 Users

Apoema JEE is an open-source JEE Application framework. It helps you build and develop both simple and complex JEE applications using de-facto frameworks such as Spring and Apache CXF. Apoema JEE ... [More] Framework provides several ready-to-use services such as account management, which you can easily integrate to your own services. If you intend to develop a JEE application from scratch, with support to database persistence (JPA) and services (JAX-WS and JAX-RS), Apoema JEE Framework might really help you. Visit project web site: http://apoema.net/jee [Less]
Created 6 days ago.

1 Users

Set of JavaDoc doclets that allow you to generate documentation for your Java APIs for: JAX-RS: the RESTful Java API JAXB: the XML Java binding Many more will come (JPA, Bean Validation, Hibernate ... [More] Search, Envers…) The full documentation is located on Lunatech Research’s open source website. [Less]
Created 4 months ago.

0 Users

The Meiji Framework is a framework for building web applications using state of the art technologies like Spring, Hibernate, JAX-RS and Dojo. It's aim is not to be an all-purpose framework like ... [More] Spring, but rather to facilitate building powerful web applications in a productive way. [Less]
Created 2 months ago.

0 Users

Implemented using Jersey, this creates a REST API for the IP location database suitable for trivial deployment.
Created 7 months ago.

0 Users

Our goal is to provide RESTful access to a JBoss Application Server 5.x Document, explain, blog, experiment, test-drive, have fun and spread the word :-) Usage: jboss-admin-rest/ server/ ... [More] Get general information of the running server ------------------------------------------------------------------------------------ logs/{name} @GET get the {name} log curl -v http://localhost:8080/jboss-admin-rest/logs/{boot, server} -or a specific log- curl -v http://localhost:8080/jboss-admin-rest/logs/server.2009-06-11 logs/{name}[?type={type}] @GET get the {name} log filtered by {type} curl -v http://localhost:8080/jboss-admin-rest/logs/server[?type={all,debug,error,fatal,info,warn}] ------------------------------------------------------------------------------------ deployments/ @GET get a list of *all* deployments of *all* types curl -v http://localhost:8080/jboss-admin-rest/deployments/ @POST create a new deployment curl -v -F "name=@./DebugServlet.war;type=application/war" http://localhost:8080/jboss-admin-rest/deployments/ deployments/{type} @GET get a list of deployments of {type} curl -v http://localhost:8080/jboss-admin-rest/deployments/{war,ear,car,ejb2x,ejb3x,rar,par,sar,beans,bundle,spring} deployments/{type}/{name} @GET get information for deployment with {name} of {type} curl -v http://localhost:8080/jboss-admin-rest/deployments/war/DebugServlet.war @DELETE delete deployment of {name} with {type} curl -v -X DELETE http://localhost:8080/jboss-admin-rest/deployments/war/DebugServlet.war @PUT update deployment of {name} and {type} (currently handles a start/stop/redeploy requests) curl -v -X PUT --data-ascii "start" -H "Content-Type: application/xml" http://localhost:8080/jboss-admin-rest/deployments/war/DebugServlet.war -or- curl -v -X PUT --data-ascii "stop" -H "Content-Type: application/xml" http://localhost:8080/jboss-admin-rest/deployments/war/DebugServlet.war ------------------------------------------------------------------------------------ components/ @GET get a list of *all* components of *all* types curl -v http://localhost:8080/jboss-admin-rest/components/ @POST create a new component curl -v -F "name=@./postgres-ds.xml;type=application/xml" http://localhost:8080/jboss-admin-rest/components/ components/{type} @GET get a list of components of {type} curl -v http://localhost:8080/jboss-admin-rest/components/{DataSource,ConnectionFactory,JMSDestination,MBean,MCBean} components/{type}/{subtype} @GET get a list of components of {type} and {subtype} curl -v http://localhost:8080/jboss-admin-rest/components/DataSource/LocalTx components/{type}/{subtype}?name={name} @GET get information for component with {name} of {type} and {subtype} curl -v http://localhost:8080/jboss-admin-rest/components/DataSource/LocalTx?name=PostgresDS @DELETE delete component of {name} with {type} and {subtype} curl -v -X DELETE http://localhost:8080/jboss-admin-rest/components/DataSource/LocalTx?name=PostgresDS @PUT update deployment of {name} and {type} (currently handles a start/stop/redeploy requests) curl -v -X PUT --data-ascii "start" -H "Content-Type: application/xml" http://localhost:8080/jboss-admin-rest/components/DataSource/LocalTx?name=PostgresDS -or- curl -v -X PUT --data-ascii "stop" -H "Content-Type: application/xml" http://localhost:8080/jboss-admin-rest/components/DataSource/LocalTx?name=PostgresDS [Less]
Created 4 months ago.

0 Users

Aeson allows very easy marshalling of POJOs to JSON. Since it uses JAXB-annotations you can marshall all your JAXB-annotated classes to JSON without any modifications. The library is very small and only relies on core J2SE (1.5 and up) and JAXB.
Created about 1 year ago.