<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
-->
This example shows how to use JAX-RS to implement a REST service.
This example uses blueprint to deal with the jaxrs-server and Apache CXF as the implementation of the JAXRS specification.
It implements a BookingService with a REST implementation.
The “client” bundle uses the BookingService with a REST client stub.
Booking POJO and the BookingService interface.BookingServiceRest implementation of the BookingService interface.BookingServiceRest implementation of the BookingService interface.BookingService.The build uses Apache Maven. Simply use:
mvn clean install
On a running Karaf instance, register the features repository using:
karaf@root()> feature:repo-add mvn:org.apache.karaf.examples/karaf-rest-example-features/LATEST/xml
As prerequisite, install a HTTP service provider (like felix-http or http (Pax Web)):
karaf@root()> feature:install http karaf@root()> feature:install http-whiteboard
or
karaf@root()> feature:install felix-http
Then, you can install the service blueprint provider or service SCR provider feature:
karaf@root()> feature:install karaf-rest-example-blueprint
karaf@root()> feature:install karaf-rest-example-scr
And the service client feature using Java Http:
karaf@root()> feature:install karaf-rest-example-client-http
The karaf-rest-example-client-http feature provides booking:* commands you can use to call the REST service.
And the service client feature using Apache CXF:
karaf@root()> feature:install karaf-rest-example-client-cxf
The karaf-rest-example-client-cxf feature provides booking:* commands you can use to call the REST service.
And the service client feature using Jakarta Jersey:
karaf@root()> feature:install karaf-rest-example-client-jersey
The karaf-rest-example-client-jersey feature provides booking:*
Once you have install a client feature, you can use booking:add and booking:list commands to interact with the REST service.
karaf@root()> booking:add 1 "John Doe" AF520 karaf@root()> booking:list
Instead of the CXF with blueprint karaf-rest-example-blueprint feature, or CXF with SCR karaf-rest-example-scr feature, you can use the JAXRS Whiteboard approach (with Aries implementation).
Install the karaf-rest-example-whiteboard feature:
karaf@root()> feature:install karaf-rest-example-whiteboard