
cxf.cxf-jaxrs-blueprint.src.main.resources.OSGI-INF.blueprint.blueprint.xml Maven / Gradle / Ivy
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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/jaxrs http://cxf.apache.org/schemas/blueprint/jaxrs.xsd"> <jaxrs:server id="customerService" address="/crm"> <jaxrs:serviceBeans> <ref component-id="customerSvc"/> <ref component-id="swaggerResourceJSON"/> </jaxrs:serviceBeans> <jaxrs:providers> <ref component-id="resourceWriter" /> <ref component-id="apiWriter" /> </jaxrs:providers> </jaxrs:server> <bean id="customerSvc" class=" org.apache.servicemix.examples.cxf.jaxrs.CustomerService"/> <bean id="swaggerResourceJSON" class="com.wordnik.swagger.jaxrs.listing.ApiListingResourceJSON" /> <!-- Swagger writers --> <bean id="resourceWriter" class="com.wordnik.swagger.jaxrs.listing.ResourceListingProvider" /> <bean id="apiWriter" class="com.wordnik.swagger.jaxrs.listing.ApiDeclarationProvider" /> <bean id="swaggerConfig" class="com.wordnik.swagger.jaxrs.config.BeanConfig"> <property name="resourcePackage" value="org.apache.servicemix.examples.cxf.jaxrs"/> <property name="version" value="1.0.0"/> <property name="basePath" value="http://localhost:8181/cxf/crm"/> <property name="title" value="Rest sample app"/> <property name="description" value="This is a app."/> <property name="contact" value="[email protected]"/> <property name="license" value="Apache 2.0 License"/> <property name="licenseUrl" value="http://www.apache.org/licenses/LICENSE-2.0.html"/> <property name="scan" value="true"/> </bean> </blueprint>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy