Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

Please see JAX-WS Spring Boot demo.

Setup

Code Block
languagexml
titleJAX-WS Starter
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
    <version>3.1.7</version>
</dependency>

...

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

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

Setup

Code Block
languagexml
titleJAX-RS Starter
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
    <version>3.1.7</version>
</dependency>

...