You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added Swaggerfox to Bobclient. As Bobclient needs access to the Docker network DNS alias names, it now has it´s own Dockerfile and Compose server. Also had the nasty "I can not find the file inside the Spring Boot jar File, but in every other situation..." (see https://stackoverflow.com/questions/25869428/classpath-resource-not-found-when-running-as-jar), which is again fixed with the even nastier solution, where we have to rely on another Framework for that simple problem, which is only introduced through Spring...
Copy file name to clipboardexpand all lines: README.md
+13
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,19 @@ Therefore we use several Spring Boot based microservices that provide different
25
25
26
26
For a general approach on how to generate private keys and certificates and create Java Keystores, have a look into https://github.com/jonashackt/spring-boot-rest-clientcertificate#generate-the-usual-key-and-crt---and-import-them-into-needed-keystore-jks-files
27
27
28
+
# HowTo Use
29
+
30
+
```
31
+
mvn clean install
32
+
docker-compose up
33
+
```
34
+
35
+
Open your Browser with [http:localhost:8080/swagger-ui.html] and fire up a GET-Request to /secretservers with Swagger :)
36
+
37
+
38
+
# TlDR: How to create multiple keys & certificates for multiple servers - and add these into one truststore / keystore
39
+
40
+
28
41
## server-alice keys and client certificate, truststore & keystore (see /server-alice/src/main/resources)
0 commit comments