You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2017/06/25 12:47:43 UTC

svn commit: r1014470 - in /websites/production/cxf/content: cache/docs.pageCache docs/jaxrsclientspringboot.html

Author: buildbot
Date: Sun Jun 25 12:47:43 2017
New Revision: 1014470

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/docs.pageCache
    websites/production/cxf/content/docs/jaxrsclientspringboot.html

Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/docs/jaxrsclientspringboot.html
==============================================================================
--- websites/production/cxf/content/docs/jaxrsclientspringboot.html (original)
+++ websites/production/cxf/content/docs/jaxrsclientspringboot.html Sun Jun 25 12:47:43 2017
@@ -118,11 +118,11 @@ Apache CXF -- JAXRSClientSpringBoot
            <!-- Content -->
            <div class="wiki-content">
 <div id="ConfluenceContent"><p><style type="text/css">/*<![CDATA[*/
-div.rbtoc1469886420797 {padding: 0px;}
-div.rbtoc1469886420797 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1469886420797 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1498394827140 {padding: 0px;}
+div.rbtoc1498394827140 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1498394827140 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1469886420797">
+/*]]>*/</style></p><div class="toc-macro rbtoc1498394827140">
 <ul class="toc-indentation"><li><a shape="rect" href="#JAXRSClientSpringBoot-Introduction">Introduction</a></li><li><a shape="rect" href="#JAXRSClientSpringBoot-Setup">Setup</a></li><li><a shape="rect" href="#JAXRSClientSpringBoot-EnablingWebClients">Enabling WebClients</a></li><li><a shape="rect" href="#JAXRSClientSpringBoot-EnablingProxyClients">Enabling ProxyClients</a></li><li><a shape="rect" href="#JAXRSClientSpringBoot-DiscoveryofServiceEndpoints">Discovery of Service Endpoints</a></li><li><a shape="rect" href="#JAXRSClientSpringBoot-Configuration">Configuration</a></li></ul>
 </div><h1 id="JAXRSClientSpringBoot-Introduction">Introduction</h1><p>This page describes how <a shape="rect" href="jax-rs-client-api.html">CXF JAX-RS Client</a> code can be used inside SpringBoot applications.</p><p>Please see a&#160;<a shape="rect" href="http://cxf.apache.org/docs/springboot.html#SpringBoot-SpringBootCXFJAX-RSStarter">CXF JAX-RS starter</a> section on how to enable JAX-RS endpoints.</p><h1 id="JAXRSClientSpringBoot-Setup">Setup</h1><p>If your SpringBoot Application depends on a <a shape="rect" href="http://cxf.apache.org/docs/springboot.html#SpringBoot-SpringBootCXFJAX-RSStarter">CXF JAX-RS starter</a> then no more dependencies are required.</p><p>If you'd like to run JAX-RS clients in a pure client-side&#160;SpringBoot Application then the following Maven pom should suffice in many cases:</p><div class="code panel pdl" style="border-width: 1px;"><div class="codeContent panelContent pdl">
 <pre class="brush: xml; gutter: false; theme: Default" style="font-size:12px;">&lt;?xml version="1.0" encoding="UTF-8"?&gt;
@@ -135,16 +135,16 @@ div.rbtoc1469886420797 li {margin-left:
     &lt;parent&gt;
         &lt;groupId&gt;org.springframework.boot&lt;/groupId&gt;
         &lt;artifactId&gt;spring-boot-starter-parent&lt;/artifactId&gt;
-        &lt;version&gt;1.3.6.RELEASE&lt;/version&gt;
+        &lt;version&gt;1.4.5.RELEASE&lt;/version&gt;
     &lt;/parent&gt; 
     &lt;artifactId&gt;spring-boot-cxf-client-application&lt;/artifactId&gt;
     &lt;groupId&gt;org.apache.cxf.samples&lt;/groupId&gt;
-    &lt;version&gt;3.1.7&lt;/version&gt;
+    &lt;version&gt;3.1.11&lt;/version&gt;
     &lt;name&gt;Spring Boot CXF Client Application&lt;/name&gt;
     &lt;description&gt;Spring Boot CXF Client Application&lt;/description&gt;
     
     &lt;properties&gt;
-        &lt;cxf.version&gt;3.1.7&lt;/cxf.version&gt;
+        &lt;cxf.version&gt;3.1.11&lt;/cxf.version&gt;
     &lt;/properties&gt;
     &lt;dependencies&gt;
         &lt;dependency&gt;