== Spring Boot - CXF Samples - Web Services

This sample project demonstrates how to use http://projects.spring.io/spring-ws-cxf/[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
----
