OSGI-INF.blueprint.blueprint.xml Maven / Gradle / Ivy
<!-- Copyright 2022 OPS4J. Licensed 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. --> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cxf="http://cxf.apache.org/blueprint/core" xmlns:jaxrs="http://cxf.apache.org/blueprint/jaxrs" xsi:schemaLocation=" http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://cxf.apache.org/blueprint/core http://cxf.apache.org/schemas/blueprint/core.xsd http://cxf.apache.org/blueprint/jaxrs http://cxf.apache.org/schemas/blueprint/jaxrs.xsd"> <bean id="swagger2Feature" class="org.apache.cxf.jaxrs.swagger.Swagger2Feature"> <property name="scanAllResources" value="true" /> <property name="usePathBasedConfig" value="true" /> <property name="title" value="Rest API Documentation" /> </bean> <bean id="restService" class="org.ops4j.pax.web.samples.whiteboard.jaxrs.RestService" /> <cxf:bus> <cxf:features> <ref component-id="swagger2Feature" /> <cxf:logging /> </cxf:features> </cxf:bus> <jaxrs:server id="restServer" address="/rest"> <jaxrs:serviceBeans> <ref component-id="restService" /> </jaxrs:serviceBeans> </jaxrs:server> </blueprint>