├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── docker │ └── Dockerfile ├── java │ └── com │ │ └── sfg │ │ └── gateway │ │ ├── MsscBreweryGatewayApplication.java │ │ └── config │ │ ├── GoogleConfig.java │ │ ├── LoadBalancedRoutesConfig.java │ │ └── LocalHostRouteConfig.java └── resources │ ├── application-local-discovery.properties │ ├── application.properties │ └── logback-spring.xml └── test └── java └── com └── sfg └── gateway └── MsscBreweryGatewayApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/docker/Dockerfile -------------------------------------------------------------------------------- /src/main/java/com/sfg/gateway/MsscBreweryGatewayApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/java/com/sfg/gateway/MsscBreweryGatewayApplication.java -------------------------------------------------------------------------------- /src/main/java/com/sfg/gateway/config/GoogleConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/java/com/sfg/gateway/config/GoogleConfig.java -------------------------------------------------------------------------------- /src/main/java/com/sfg/gateway/config/LoadBalancedRoutesConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/java/com/sfg/gateway/config/LoadBalancedRoutesConfig.java -------------------------------------------------------------------------------- /src/main/java/com/sfg/gateway/config/LocalHostRouteConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/java/com/sfg/gateway/config/LocalHostRouteConfig.java -------------------------------------------------------------------------------- /src/main/resources/application-local-discovery.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/resources/application-local-discovery.properties -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/logback-spring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/main/resources/logback-spring.xml -------------------------------------------------------------------------------- /src/test/java/com/sfg/gateway/MsscBreweryGatewayApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/springframeworkguru/mssc-brewery-gateway/HEAD/src/test/java/com/sfg/gateway/MsscBreweryGatewayApplicationTests.java --------------------------------------------------------------------------------