Create an initial web service

Create a maven project structure.

One mock webservice should be included. Both Json and XML payload accepted.
Configuration of this webservice (response body, response headers, http status code) should be fully configured in a configuration file.

Invoication details (headers, payload) should be logged.

Closes #T124
This commit is contained in:
Szakalakamaka
2020-08-25 14:05:39 +02:00
commit dcc996c006
157 changed files with 3572 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM openjdk:14-alpine as builder
RUN apk add --no-cache maven
WORKDIR /usr/app/klaus
COPY ./ ./
RUN mvn --version
RUN mvn clean install -B
CMD mvn spring-boot:run