BAEL-314 - renaming module

This commit is contained in:
slavisa-baeldung
2016-09-29 00:12:05 +02:00
parent b7385424a9
commit 25ea6ef7ee
17 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
spring.application.name=discovery
server.port=8082
eureka.instance.hostname=localhost
eureka.client.serviceUrl.defaultZone=http://localhost:8082/eureka/
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false

View File

@@ -0,0 +1,10 @@
spring.application.name=gateway
server.port=8080
eureka.client.region = default
eureka.client.registryFetchIntervalSeconds = 5
eureka.client.serviceUrl.defaultZone=http://localhost:8082/eureka/
zuul.routes.resource.path=/resource/**
hystrix.command.resource.execution.isolation.thread.timeoutInMilliseconds: 5000

View File

@@ -0,0 +1,8 @@
spring.application.name=resource
server.port=8083
resource.returnString=hello cloud
eureka.client.region = default
eureka.client.registryFetchIntervalSeconds = 5
eureka.client.serviceUrl.defaultZone=http://localhost:8082/eureka/