|
Apache CXF example source code file (beans.xml)
The Apache CXF beans.xml source code
<?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.
-->
<!-- START SNIPPET: beans -->
<!--
beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:simple="http://cxf.apache.org/simple" xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/simple http://cxf.apache.org/schemas/simple.xsd"
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxrs="http://cxf.apache.org/jaxrs"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs
http://cxf.apache.org/schemas/jaxrs.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-2.0.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
<jaxrs:server id="atomserver" address="/">
<jaxrs:serviceBeans>
<bean class="org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource"/>
<bean class="org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource2"/>
<bean class="org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource3"/>
<bean class="org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource4"/>
<bean class="org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource5"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<ref bean="feed" />
<ref bean="entry" />
</jaxrs:providers>
</jaxrs:server>
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="multiplicity" value="one"/>
<property name="loggers"
value="
org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource:ALL,
namedLogger:WARN" />
<property name="deliverer">
<ref bean="webDeliverer" />
</property>
</bean>
<bean id="webDeliverer" class="org.apache.cxf.management.web.logging.atom.deliverer.WebClientDeliverer">
<constructor-arg ref="webClient"/>
</bean>
<bean id="webClient" class="org.apache.cxf.jaxrs.client.WebClient"
factory-method="create">
<constructor-arg type="java.lang.String" value="http://localhost:${testutil.ports.AbstractSpringServer}/root/feeds" />
<constructor-arg ref="feedProvider" />
</bean>
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="batchSize" value="4"/>
<property name="loggers"
value="
org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource2:ALL,
namedLogger:WARN" />
<property name="url" value="http://localhost:${testutil.ports.AbstractSpringServer}/batch/feeds"/>
</bean>
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="output" value="entry"/>
<property name="loggers"
value="
org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource3:ALL,
namedLogger:WARN" />
<property name="deliverer">
<ref bean="webDeliverer3" />
</property>
</bean>
<bean id="webDeliverer3" class="org.apache.cxf.management.web.logging.atom.deliverer.WebClientDeliverer">
<constructor-arg ref="webClient3"/>
</bean>
<bean id="webClient3" class="org.apache.cxf.jaxrs.client.WebClient"
factory-method="create">
<constructor-arg type="java.lang.String" value="http://localhost:${testutil.ports.AbstractSpringServer}/entries/entries" />
<constructor-arg ref="entryProvider" />
</bean>
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="output" value="entry"/>
<property name="multiplicity" value="many"/>
<property name="batchSize" value="2"/>
<property name="loggers"
value="
org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource4:ALL,
namedLogger:WARN" />
<property name="url" value="http://localhost:${testutil.ports.AbstractSpringServer}/entriesMany/entries"/>
</bean>
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="multiplicity" value="one"/>
<property name="format" value="extension"/>
<property name="loggers"
value="
org.apache.cxf.systest.jaxrs.JAXRSLoggingAtomPushSpringTest$Resource5:ALL,
namedLogger:WARN" />
<property name="url" value="http://localhost:${testutil.ports.AbstractSpringServer}/extensions/feeds"/>
</bean>
<util:list id="feedProvider">
<ref bean="feed"/>
</util:list>
<util:list id="entryProvider">
<ref bean="entry"/>
</util:list>
<bean id="feed" class="org.apache.cxf.jaxrs.provider.AtomFeedProvider">
<property name="formattedOutput" value="true"/>
</bean>
<bean id="entry" class="org.apache.cxf.jaxrs.provider.AtomEntryProvider">
<property name="formattedOutput" value="true"/>
</bean>
<!--
Other config samples:
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="url" value="http://localhost:${testutil.ports.AbstractSpringServer}/feed" />
<property name="level" value="ALL" />
</bean>
<bean id="soapDeliverer" ... />
<bean class="org.apache.cxf.management.web.logging.atom.AtomPushBean"
init-method="init">
<property name="deliverer">
<ref bean="soapDeliverer" />
</property>
<property name="loggers"
value="
org.apache.cxf:DEBUG,
org.apache.cxf.jaxrs:ALL,
org.apache.cxf.bus:WARNING" />
<property name="batchSize" value="10" />
</bean>
-->
</beans>
<!-- END SNIPPET: beans -->
Other Apache CXF examples (source code examples)Here is a short list of links related to this Apache CXF beans.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.