From 1d1c9ba3a50746d7dbfbb91da27cd829db0291cb Mon Sep 17 00:00:00 2001 From: hengwen Date: Wed, 5 Jun 2019 14:44:48 +0200 Subject: [PATCH] Use ip instead of localhost --- restful/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/restful/README.md b/restful/README.md index f0439be..00be685 100644 --- a/restful/README.md +++ b/restful/README.md @@ -140,7 +140,7 @@ To enable visualization, put the static files under `restful/src/main/resources/ Aa an example, to use the visualization provided in [visualization repo](https://git.rwth-aachen.de/monticore/EmbeddedMontiArc/simulators/visualization), copy everything from [webapp directory](https://git.rwth-aachen.de/monticore/EmbeddedMontiArc/simulators/visualization/tree/master/src/main/webapp) into `restful/src/main/resources/resources`. -Start the restful server, the visualization client will be available at [http://localhost:8090/index.html](http://localhost:8090/index.html) +Start the restful server, the visualization client will be available at [http://127.0.0.1:8090/index.html](http://127.0.0.1:8090/index.html) ## Simulation via RESTful API @@ -157,4 +157,4 @@ The sequence should be: ## API Documentation The APIs are defined using OpenAPI2.0 in `openapi.yml`. However, the restful server also provides an auto generated API documentation page at -[http://localhost:8090/swagger-ui.html](http://localhost:8090/swagger-ui.html). +[http://127.0.0.1:8090/swagger-ui.html](http://127.0.0.1:8090/swagger-ui.html). -- GitLab