Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iulianoroberto/restful_webservice_jax-rs
Implementation by JAX-RS of RESTful Web service in Java.
https://github.com/iulianoroberto/restful_webservice_jax-rs
cxf cxf-service java jax-rs middleware web webservice
Last synced: about 2 months ago
JSON representation
Implementation by JAX-RS of RESTful Web service in Java.
- Host: GitHub
- URL: https://github.com/iulianoroberto/restful_webservice_jax-rs
- Owner: iulianoroberto
- Created: 2024-01-16T12:49:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-16T12:53:12.000Z (about 1 year ago)
- Last Synced: 2024-01-30T01:49:09.885Z (12 months ago)
- Topics: cxf, cxf-service, java, jax-rs, middleware, web, webservice
- Language: Java
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RESTful_WebService_JAX-RS
Implementation by JAX-RS of RESTful Web service in Java.Implementation of a RESTful Web service to manage an eShop exposing the following operations listed as methods in a Java interface:
- public Items getItemList();
- public Response createItem(Item item);
- public Item getItemDetails(String code);
- public void deleteItem(String code);
- public Response orderItem(String code);
- public Order getOrder(String code, int oid);