# spring-boot-sample-ws-cxf **Repository Path**: scyslz/spring-boot-sample-ws-cxf ## Basic Information - **Project Name**: spring-boot-sample-ws-cxf - **Description**: ws+jpa entityManager - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2019-07-26 - **Last Updated**: 2021-01-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README == Spring Boot - CXF Samples - Web Services This sample project demonstrates how to use CXF Web Services with Spring Boot. The sample uses Maven. It can be built and run from the command line: ---- $ mvn spring-boot:run ---- http://localhost:8080/Service/Hello?WSDL will now display the generated WSDL. to run the client run in a new terminal window: ---- $ mvn exec:java ---- Using Docker: If you have Docker running on your machine (and appropriate DOCKER_HOST set), you can run ---- $ mvn docker:build ---- to create the Docker image. Once created, you can start the container via: ---- docker run -p 8080:8080 -t org.apache.cxf.samples/spring-boot-sample-ws-cxf ----