Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DAFC2200B40 for ; Fri, 1 Jul 2016 12:47:47 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D9B2B160A61; Fri, 1 Jul 2016 10:47:47 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0A2A1160A5D for ; Fri, 1 Jul 2016 12:47:46 +0200 (CEST) Received: (qmail 46449 invoked by uid 500); 1 Jul 2016 10:47:46 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 46439 invoked by uid 99); 1 Jul 2016 10:47:46 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Jul 2016 10:47:46 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id B9C4F1A5331 for ; Fri, 1 Jul 2016 10:47:45 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.374 X-Spam-Level: X-Spam-Status: No, score=0.374 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx2-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id OHPWSK7fvBL0 for ; Fri, 1 Jul 2016 10:47:43 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-us.apache.org (ASF Mail Server at mx2-lw-us.apache.org) with ESMTP id 764445FAEA for ; Fri, 1 Jul 2016 10:47:43 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id BD2E3E0279 for ; Fri, 1 Jul 2016 10:47:42 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id B970A3A01DD for ; Fri, 1 Jul 2016 10:47:42 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r991803 - in /websites/production/cxf/content: cache/docs.pageCache docs/springboot.html Date: Fri, 01 Jul 2016 10:47:42 -0000 To: commits@cxf.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160701104742.B970A3A01DD@svn01-us-west.apache.org> archived-at: Fri, 01 Jul 2016 10:47:48 -0000 Author: buildbot Date: Fri Jul 1 10:47:42 2016 New Revision: 991803 Log: Production update by buildbot for cxf Modified: websites/production/cxf/content/cache/docs.pageCache websites/production/cxf/content/docs/springboot.html Modified: websites/production/cxf/content/cache/docs.pageCache ============================================================================== Binary files - no diff available. Modified: websites/production/cxf/content/docs/springboot.html ============================================================================== --- websites/production/cxf/content/docs/springboot.html (original) +++ websites/production/cxf/content/docs/springboot.html Fri Jul 1 10:47:42 2016 @@ -117,11 +117,11 @@ Apache CXF -- SpringBoot

+/*]]>*/

 

Additional Configuration

Use "cxf.path" property to customize a CXFServlet URL pattern.

Spring Boot CXF JAX-RS Starter

Features

Registers CXF Servlet with a  "/services/*" URL pattern for serving CXF JAX-RS endpoints.

Optionally auto-discovers JAX-RS root resources and providers and creates a JAX-RS endpoint.

Please see JAX-RS Spring Boot and JAX-RS Spring Boot Scan demos.

Setup

JAX-RS Starter
+

 

Additional Configuration

Use "cxf.path" property to customize a CXFServlet URL pattern.

Spring Boot CXF JAX-RS Starter

Features

Registers CXF Servlet with a  "/services/*" URL pattern for serving CXF JAX-RS endpoints.

Optionally auto-discovers JAX-RS root resources and providers and creates a JAX-RS endpoint.

Please see JAX-RS Spring Boot and JAX-RS Spring Boot Scan demos.

Setup

JAX-RS Starter
<dependency>
     <groupId>org.apache.cxf</groupId>
     <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
     <version>3.1.7</version>
 </dependency>
-

Additional Configuration

Use "cxf.path" property to customize a CXFServlet URL pattern.

Use "cxf.jaxrs.component-scan" property to create a JAX-RS endpoint from the auto-discovered JAX-RS root resources and providers.

+

Additional Configuration

Use "cxf.path" property to customize a CXFServlet URL pattern.

Use "cxf.jaxrs.component-scan" property to create a JAX-RS endpoint from the auto-discovered JAX-RS root resources and providers which are marked as Spring Components (annotated with Spring @Component or created and returned from @Bean methods).

Use "cxf.jaxrs.classes-scan" property to create a JAX-RS endpoint from the auto-discovered JAX-RS root resources and provider classes. Such classes do not have to be annotated Spring @Component. This property needs be accompanied by a "cxf.jaxrs.classes-scan-packages" property which sets a comma-separated list of the packages to scan.

Note "cxf.jaxrs.component-scan" and "cxf.jaxrs.classes-scan" are mutually exclusive.