The main functionality of Gateway Microservice is to route the incoming requests to the appropriate microservice, therefore, it is the entry point for all the incoming requests. In counterpart, each microservice have to expose their own port and endpoints to the internet, which is not a good practice. The Gateway Microservice will act as a reverse proxy and route the incoming requests to the appropriate microservice. Also, it will also handle the authentication and authorization of the incoming requests.
flowchart LR
subgraph api [Trusted Layer]
direction TB
gateway e2@==> account
gateway e4@==> others
account --> db@{ shape: cyl, label: "Database" }
others --> db
end
internet e1@==>|request| gateway:::red
e1@{ animate: true }
e2@{ animate: true }
e4@{ animate: true }
classDef red fill:#fcc
The key functionalities of Gateway Microservice are:
Routing: it will route the incoming requests to the appropriate microservice.
Authentication/Authorization: it will handle the authentication and the authorization of the incoming requests.
packagestore.gateway;importjava.net.InetAddress;importjava.net.UnknownHostException;importjava.util.Map;importorg.springframework.http.HttpStatus;importorg.springframework.http.ResponseEntity;importorg.springframework.web.bind.annotation.GetMapping;importorg.springframework.web.bind.annotation.RestController;@RestControllerpublicclassGatewayResource{@GetMapping("/info")publicResponseEntity<Map<String,String>>version(){Stringhostname="hostname can not be resolved";try{InetAddressaddr;addr=InetAddress.getLocalHost();hostname=addr.getHostName();}catch(UnknownHostExceptionex){}returnnewResponseEntity<Map<String,String>>(Map.ofEntries(Map.entry("hostname",hostname),Map.entry("os.arch",System.getProperty("os.arch")),Map.entry("os.name",System.getProperty("os.name")),Map.entry("os.version",System.getProperty("os.version")),Map.entry("file.separator",System.getProperty("file.separator")),Map.entry("java.class.path",System.getProperty("java.class.path")),Map.entry("java.home",System.getProperty("java.home")),Map.entry("java.vendor",System.getProperty("java.vendor")),Map.entry("java.vendor.url",System.getProperty("java.vendor.url")),Map.entry("java.version",System.getProperty("java.version")),Map.entry("line.separator",System.getProperty("line.separator")),Map.entry("path.separator",System.getProperty("path.separator")),Map.entry("user.dir",System.getProperty("user.dir")),Map.entry("user.home",System.getProperty("user.home")),Map.entry("user.name",System.getProperty("user.name")),Map.entry("jar",newjava.io.File(GatewayApplication.class.getProtectionDomain().getCodeSource().getLocation().getPath()).toString())),HttpStatus.OK);}}