Git Product home page Git Product logo

Comments (24)

SoftwareKing avatar SoftwareKing commented on July 18, 2024

image

from spring-cloud-code.

SoftwareKing avatar SoftwareKing commented on July 18, 2024

image

from spring-cloud-code.

zuoziye1 avatar zuoziye1 commented on July 18, 2024

ch3-1-config-server 启动之后,再启动 eureka-server启动不了,我让我同事看,我同事说必须把server.port放在eureka-server的配置文件中才行。ch3-1 源码是不是有问题啊?求解答

from spring-cloud-code.

SoftwareKing avatar SoftwareKing commented on July 18, 2024

@zuoziye1 代码没问题的,可以加我微信Software_King进答疑群答疑

from spring-cloud-code.

laiyy0728 avatar laiyy0728 commented on July 18, 2024

第五章。图 5-1 load balancer 文字描述错误

from spring-cloud-code.

laiyy0728 avatar laiyy0728 commented on July 18, 2024

在表 5-1 下方的介绍中,提到:ZoneAvoidanceRule 策略已经废弃掉了,现在的默认负载均衡是 RoundRobin。而在表 5-3 中,IRule 的默认实现类是 ZoneAvoidanceRule。这个是否有冲突?我理解的是,既然 ZoneAvoidanceRule 已经废弃了,那么默认的实现类应该是 RoundRobin?

from spring-cloud-code.

linwei007 avatar linwei007 commented on July 18, 2024

这本书前面几张写的非常好,是读过的基本springboot里面把关键点写的非常清楚地一本。但是第21章版本控制和灰度发布,写的太简单,就是个sample 结束完全不知其所以然。

from spring-cloud-code.

SoftwareKing avatar SoftwareKing commented on July 18, 2024

@laiyy0728 @linwei007 @zuoziye1 更多内容解答,可以加我微信Software_King进微信群

from spring-cloud-code.

2458991423 avatar 2458991423 commented on July 18, 2024

也感觉21章有些简单,笼统,其他章节写的很好,源码,实战并存。

from spring-cloud-code.

major2015 avatar major2015 commented on July 18, 2024

内容太入门了,spring.io上全有啊。。。

from spring-cloud-code.

GreyZeng avatar GreyZeng commented on July 18, 2024

ch10-1的common项目应该少了一个依赖:
import org.apache.commons.lang.StringUtils;
这个报错了

from spring-cloud-code.

GreyZeng avatar GreyZeng commented on July 18, 2024
  • 本书优点:内容较新,覆盖全面
  • 本书不足:可以完善一下ch10-1的综合案例
  • 第二版展望:介绍或者对比一下Service Mesh 技术和istio框架
    Spring Netflix 这套考虑替换为新的解决方案

from spring-cloud-code.

826193310 avatar 826193310 commented on July 18, 2024

一开始就掉坑, 代码清单 ch2-1的pom.xml 中spring-cloud 的版本用 变量${spring-cloud.version}标识,而在仓库中却是直接填的版本信息,我觉得代码尽量贴全面一点咯

from spring-cloud-code.

kimmy-wang avatar kimmy-wang commented on July 18, 2024
  • 本书优点:内容较新,覆盖全面
  • 本书不足:能不能添加一个所有配置的列表,讲解不深入
  • 第二版展望:加入Nacos、Sentinel等相关介绍;对比一下Service Mesh 技术和istio框架

from spring-cloud-code.

magaofeng2010 avatar magaofeng2010 commented on July 18, 2024

配置书中讲的不全,得对着源码工程来才行

from spring-cloud-code.

magaofeng2010 avatar magaofeng2010 commented on July 18, 2024

不过坑爬的多,懂得就越多,感谢作者

from spring-cloud-code.

xialutiya avatar xialutiya commented on July 18, 2024

3-1的eureka-server要怎么启动的,直接启动总是默认端口8080,没有加载到config-server中的配置文件.我在eureka-server的配置文件里面加上了spring.profiles.active=peer1才能加载到eureka-server-peer1,但是peer2又要怎么加载.

from spring-cloud-code.

rhettpang avatar rhettpang commented on July 18, 2024

from spring-cloud-code.

zjs9609 avatar zjs9609 commented on July 18, 2024

3-1的eureka-server要怎么启动的,直接启动总是默认端口8080,没有加载到config-server中的配置文件.我在eureka-server的配置文件里面加上了spring.profiles.active=peer1才能加载到eureka-server-peer1,但是peer2又要怎么加载.

你没有写controller吗,我现在遇到了一个问题就是起不了eureka-peer2

from spring-cloud-code.

SoftwareKing avatar SoftwareKing commented on July 18, 2024

@zjs9609 里面有个readme文件,还有问题加我微信进书籍答疑群

from spring-cloud-code.

cghtom avatar cghtom commented on July 18, 2024

p505 ch21-3 的代码呢?

from spring-cloud-code.

cakin24 avatar cakin24 commented on July 18, 2024

第十三章灰度发布的Discovery项目是哪个版本啊?github上下载下来的项目会有登录认证这一步,有com.nepxion.discovery.console.desktop.ConsoleLogin.java这个文件,书中截图却没有这个文件,到底是哪个版本啊?

from spring-cloud-code.

cakin24 avatar cakin24 commented on July 18, 2024

建议把P503 页的Discovery项目的源码也加到github上,或者指定 https://github.com/Nepxion/Discovery的具体版本号,以及相关配置。以便于和21.3.2的项目调通。

from spring-cloud-code.

chengqiuming avatar chengqiuming commented on July 18, 2024

1 https://github.com/Nepxion/Discovery目前最早的版本是3.8.1 ,discovery-console-desktop子项目都有ConsoleLogin.java 这个文件,但书中截图却没这个文件,P503页无可操作性。
2 运行https://github.com/Nepxion/Discovery项目后会弹出认证框,输入用户名:admin ,密码:admin,提示用户名和密码错误。
3 在ch21-1/ch21-1-discovery-console这个项目中加上 admin=admin还是报错。
4 屏蔽掉: ConsoleLogin consoleLogin = new ConsoleLogin(); consoleLogin.launch();跳过认证,进入主界面后,选择服务拓扑,还是报错,提示java.lang.IllegalArgumentException: {"timestamp":"2019-12-08T02:21:34.776+0000","status":404,"error":"Not Found","message":"No message available","path":"/console/groups"}
灰度发布这一题材很好,可就是调不通,哪位大侠能调通?

from spring-cloud-code.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.