From 9a37a27a3c1e27fd2e5099a6d594b6ad3a6e0da3 Mon Sep 17 00:00:00 2001 From: Nanne Baars Date: Sat, 14 Aug 2021 12:19:39 +0200 Subject: [PATCH] Add explicit file encoding to the java command to prevent errors like: "It seems the application is startd on a OS with non default UTF-8 encoding:Cp1252" " --- README.MD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.MD b/README.MD index c40d4bf6a..c98846f8d 100644 --- a/README.MD +++ b/README.MD @@ -50,8 +50,8 @@ WebWolf will be located at: http://127.0.0.1:9090/WebWolf Download the latest WebGoat and WebWolf release from [https://github.com/WebGoat/WebGoat/releases](https://github.com/WebGoat/WebGoat/releases) ```shell -java -jar webgoat-server-8.2.1.jar [--server.port=8080] [--server.address=localhost] [--hsqldb.port=9001] -java -jar webwolf-8.2.1.jar [--server.port=9090] [--server.address=localhost] [--hsqldb.port=9001] +java -Dfile.encoding=UTF-8 -jar webgoat-server-8.2.1.jar [--server.port=8080] [--server.address=localhost] [--hsqldb.port=9001] +java -Dfile.encoding=UTF-8 -jar webwolf-8.2.1.jar [--server.port=9090] [--server.address=localhost] [--hsqldb.port=9001] ``` WebGoat will be located at: http://127.0.0.1:8080/WebGoat and