Skip to content
Snippets Groups Projects
Commit 5bf3c506 authored by Martin Weise's avatar Martin Weise
Browse files

updated gateway routes

parent bfe1cac9
No related branches found
No related tags found
5 merge requests!23Sprint results,!20Pull Request,!19Pull Request,!18Merge Conflicts,!11WIP: Resolve "Database: Create (+ temporal tables)"
...@@ -16,6 +16,11 @@ public class GatewayConfig { ...@@ -16,6 +16,11 @@ public class GatewayConfig {
.method("POST","GET","PUT","DELETE") .method("POST","GET","PUT","DELETE")
.and() .and()
.uri("lb://fda-container-service")) .uri("lb://fda-container-service"))
.route("fda-container-service", r -> r.path("/api/image/**")
.and()
.method("POST","GET","PUT","DELETE")
.and()
.uri("lb://fda-container-service"))
.route("fda-database-service", r -> r.path("/api/database/**") .route("fda-database-service", r -> r.path("/api/database/**")
.and() .and()
.method("POST","GET","PUT","DELETE") .method("POST","GET","PUT","DELETE")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment