Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "REST support in STP"

(Introduction)
(Introduction)
Line 1: Line 1:
 
== Introduction ==
 
== Introduction ==
This page aims to define the processes how to support REST in stp from users point of view, in this page, presents a simple scenario for how to create RESTfull service by starting from a database, try to define the steps that how to support REST in STP ,  
+
This page aims to define the basic processes on how to support REST in stp, there presents a simple scenario for how to create RESTfull service by starting from a database,
 
There are two ways to support REST, first, we support exposing  a database to RESTfull service directly
 
There are two ways to support REST, first, we support exposing  a database to RESTfull service directly
 
the second way is that users can import some POJO class into a rest project, then add some REST annotations which defined in jsr311 specification.
 
the second way is that users can import some POJO class into a rest project, then add some REST annotations which defined in jsr311 specification.

Revision as of 23:24, 6 November 2007

Introduction

This page aims to define the basic processes on how to support REST in stp, there presents a simple scenario for how to create RESTfull service by starting from a database, There are two ways to support REST, first, we support exposing a database to RESTfull service directly the second way is that users can import some POJO class into a rest project, then add some REST annotations which defined in jsr311 specification.

Back to the top