Hey Guys I was developing a simple project with spring boot, which has 2 services user and blogs and I am using eureka server and I tried to implement a gateway service and it also got registered on the eureka server also but I cannot access the route paths of either user or blog service can anyone please help me with this. This the application.yml file for the gateway service

Spring Cloud Netflix Spring boot application ,accessing routs with gateway service gives white label error? Spring Cloud Netflix Spring boot application ,accessing routs with gateway service gives white label error?

server:
  port: 3030
spring:
  application:
    name: gateway-service
  cloud:
    gateway:
      routes:
        - id: userModule
          uri: http://localhost:3001/
          predicates:
            - Path=/users/**
        - id: blogModule
          uri: http://localhost:3002/
          predicates:
            - Path=/blogs/**
eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:3000/eureka
  registerWithEureka:
    - true
  fetchRegistry:
    - true

Comment From: MarianConstantinMarica

Can you please send the code repository?

Comment From: spring-cloud-issues

If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed.

Comment From: spring-cloud-issues

Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue.