각각의 서버들에 Request를 보낼 때 인증을 거쳐야 하는데, 마이크로서비스가 늘어날수록 서비스의 수 만큼 인증을 받아야 하는 번거로움이 있다
다수의 인증을 줄여주고, 한번의 인증으로 여러서비스를 한번에 사용 할 수 있도록 도와주는 Spring Cloud Gateway를 사용 해 보도록 하자
Microservice architecture is a technology that enables deploying multiple services.
When sending a Request to each server, authentication is required, and as the number of microservices increases, the inconvenience of having to authenticate for each service grows.
Let's use Spring Cloud Gateway, which reduces multiple authentications and allows you to use multiple services at once with a single authentication.