From dda63e962a3669e8c1a18268cf061026c8f22e2d Mon Sep 17 00:00:00 2001 From: Mr Li Date: Tue, 27 Apr 2021 16:33:08 +0800 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加nacos2.0支持文档 --- README.md | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index caac883..a54b3ab 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ Ocelot集成Nacos注册中心组件 ### 开发环境 + +#### Nacos 1.x + .Net Core 3.1 因为最新稳定版的Ocelot是在.Net Core 3.1上构建的(目前以支持.net5,由张队进行升级的) + Ocelot版本 v16.0.1(最新版已是17.0.0) + Nacos访问组件 [nacos-sdk-csharp](https://github.com/catcherwong/nacos-sdk-csharp) @@ -9,8 +11,19 @@ Ocelot集成Nacos注册中心组件 ``` 它其实是有一个asp.net core版本的组件,但是我没有选用,虽然那个用起来功能很强大,但是我需要自己改造一下,让它能更好的适配Ocelot + +#### Nacos 2.0 ++ .Net5 ++ Ocelot版本 v17.0.0 ++ Nacos访问组件 [nacos-sdk-csharp](https://github.com/nacos-group/nacos-sdk-csharp) + ``` + + ``` ### 添加引用 +不同版本支持naocs版本不一样 + +#### Naocs 1.x ``` ``` @@ -27,6 +40,16 @@ dotnet add package Ocelot.Provider.Nacos --version 1.0.0 dotnet add package Ocelot.Provider.Nacos --version 1.1.0 ``` +#### Nacos 2.0 + +管理界面安装的话注意勾选 包括预览发行版,因为目前构建的是预览版 +``` + +``` +或 +``` +dotnet add package Ocelot.Provider.Nacos --version 1.2.0-preview.1 +``` ### 使用方式 在已有的Ocelot的项目上添加以下内容,具体操作可查看[demo](https://github.com/softlgl/Ocelot.Provider.Nacos/tree/master/demo/ApiGatewayDemo) @@ -74,5 +97,21 @@ public void ConfigureServices(IServiceCollection services) "ServiceName": "apigateway" } ``` - +**使用Nacos 2.0的时候注意 nacos-sdk-csharp 1.1.0版本配置文件发生的变化,如果在Nacos 2.0管理界面的服务列表里展示服务,需要新建自己的命名空间并将NameSpace上填写Nacos的NameSpaceId,如下所示** +```json +"nacos": { + "ServerAddresses": [ "http://192.168.219.1:8848" ], + "ServiceName": "apigateway", + "DefaultTimeOut": 15000, + //自定义Namespace的Id + "Namespace": "2ae308e2-7e8a-4602-9d1c-56508a3e263c", + "GroupName": "DEFAULT_GROUP", + "ClusterName": "DEFAULT", + "ListenInterval": 1000, + "RegisterEnabled": true, + "InstanceEnabled": true, + "LBStrategy": "WeightRandom", + "NamingUseRpc": true + } +```