diff --git a/README.md b/README.md index 8f787f2..2eb2eee 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,10 @@ github下载:[https://github.com/forezp/SpringCloudLearning](https://github.co * 未完。。。 * 还有很多篇。。。 +### 进阶篇 + +* [ Spring Cloud Sleuth超详细实战](http://blog.csdn.net/forezp/article/details/76795269) + ### 源码篇: * [深入理解Feign之源码解析](http://blog.csdn.net/forezp/article/details/73480304) @@ -50,12 +54,10 @@ github下载:[https://github.com/forezp/SpringCloudLearning](https://github.co ### 怎么支持我? -* star一下哦 -* 收藏下我的专栏: -* [http://blog.csdn.net/forezp/article/details/70148833](http://blog.csdn.net/forezp/article/details/70148833) * 这个系列会持续更新,敬请关注! +* 关注我的公众号,精彩内容不能错过! - +![forezp.jpg](http://upload-images.jianshu.io/upload_images/2279594-0805748d92bba033.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/200) diff --git a/chapter10/eureka-server/src/main/resources/application-peer1.yml b/chapter10/eureka-server/src/main/resources/application-peer1.yml index 20c1165..58394c6 100755 --- a/chapter10/eureka-server/src/main/resources/application-peer1.yml +++ b/chapter10/eureka-server/src/main/resources/application-peer1.yml @@ -8,4 +8,4 @@ eureka: hostname: peer1 client: serviceUrl: - defaultZone: http://peer2/eureka/ \ No newline at end of file + defaultZone: http://peer2:8769/eureka/ diff --git a/chapter10/eureka-server/src/main/resources/application-peer2.yml b/chapter10/eureka-server/src/main/resources/application-peer2.yml index a8289eb..bc1c565 100755 --- a/chapter10/eureka-server/src/main/resources/application-peer2.yml +++ b/chapter10/eureka-server/src/main/resources/application-peer2.yml @@ -9,4 +9,4 @@ eureka: hostname: peer2 client: serviceUrl: - defaultZone: http://peer1/eureka/ \ No newline at end of file + defaultZone: http://peer1:8761/eureka/