We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
书中版本:
<properties> <spring-cloud-alibaba.version>2.2.0.RELEASE</spring-cloud-alibaba.version> </properties>
此版本用的 nacos-client 是 1.1.4,会出现超时,对应issue:alibaba/nacos#2206
nacos-client
我这改为:
<dependencyManagement> <dependencies> <dependency> <groupId>com.alibaba.cloud</groupId> <artifactId>spring-cloud-alibaba-dependencies</artifactId> <version>${spring-cloud-alibaba.version}</version> <type>pom</type> <scope>import</scope> <exclusions> <exclusion> <groupId>com.alibaba.nacos</groupId> <artifactId>nacos-client</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.alibaba.nacos</groupId> <artifactId>nacos-client</artifactId> <version>1.4.1</version> </dependency> </dependencies> </dependencyManagement>
The text was updated successfully, but these errors were encountered:
建议使用 1.2.1,这个是目前最稳定的版本。
Sorry, something went wrong.
这样的嘛,之前爆出 1.4.0 的漏洞,所以都更新到 1.4.1 了。
No branches or pull requests
书中版本:
此版本用的
nacos-client
是 1.1.4,会出现超时,对应issue:alibaba/nacos#2206我这改为:
The text was updated successfully, but these errors were encountered: