Spring Boot Microservice- Security defined in the service always return 403
Hi, I have a problem about Spring Boot Microservices. After creating user login and making a request to order service, I get 403 forbidden issue. I think there is a problem in security config in api gateway or order service but I couldn't solve it. How can I do that? Here is the link : https://stackoverflow.com/questions/74462679/spring-boot-microservice-security-defined-in-the-service-always-return-403
Stack Overflow
I tried to implement and example of Spring Boot Microservice. It consists of eureka server, config server, api gateway(jwt filter), auth service, product service, order service and lastly payment s...