Skip to content

Proof of Concept to provide REST and SOAP Web Services with a single spring boot application.

Notifications You must be signed in to change notification settings

infantesimone/poc-spring-boot-rest-soap-services

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

REST+SOAP Services mit Spring Boot

REST service usually are implemented by a code first approach. To use a code first approach to implement a SOAP service Apache CXF should be used.

Integration of Apache CXF

Apache CXF provides a dependency:

<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
    <version>3.1.11</version>
</dependency>

Spring Boot Profile

The following Profile

  • soap - activate the SOAP Endpoint
  • swagger - activate Swagger Endpoint and UI

Swagger UI

http://localhost:8080/swagger-ui.html

WSDL Endpoint

http://localhost:8080/services/

Literatur

http://cxf.apache.org/docs/springboot.html

About

Proof of Concept to provide REST and SOAP Web Services with a single spring boot application.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%