How construct WebServices with SpringBoot (modern way)
Go to file
2024-01-14 23:45:14 +01:00
.mvn/wrapper initial commit 2019-05-19 16:58:17 +02:00
src Test 2024-01-14 23:45:14 +01:00
.gitignore initial commit 2019-05-19 16:58:17 +02:00
Dockerfile SpringBoot 3.2.1 with Java 17 2024-01-14 22:32:29 +01:00
mvnw initial commit 2019-05-19 16:58:17 +02:00
mvnw.cmd initial commit 2019-05-19 16:58:17 +02:00
persons.wsdl initial commit 2019-05-19 16:58:17 +02:00
pom.xml SpringBoot 3.2.1 with Java 17 2024-01-14 22:32:29 +01:00
README.md SpringBoot 3.2.1 with Java 17 2024-01-14 22:32:29 +01:00
request.xml request.xml and fix issue 2019-05-19 23:29:48 +02:00

How construct WebServices with SpringBoot 3.2.1 and Java 17 (modern way)

Run

mvn spring-boot:run -f pom.xml

Example

curl -H "content-type: text/xml" -d @request.xml http://localhost:8080/ws

Docker

docker build --rm -t ws .
docker run -ti --rm --name ws --network host ws