# grpc-demo
**Repository Path**: jiang5sx/grpc-demo
## Basic Information
- **Project Name**: grpc-demo
- **Description**: No description available
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 1
- **Forks**: 0
- **Created**: 2023-12-27
- **Last Updated**: 2024-08-05
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
项目
1、@EnableDiscoveryClient注解的用法
| 配置 | 效果 |
|-----------------------------------------------------------------------------|-----------------------|
| 不配置@EnableDiscoveryClient,不配置nacos.discovery.enable | 具有服务自动注册功能,具有拉取服务信息功能 |
| 不配置@EnableDiscoveryClient,配置nacos.discovery.enable=false | 服务注册与拉取服务信息功能都不具备 |
| 配置@EnableDiscoveryClient(autoRegister=false),配置nacos.discovery.enable=true | 不具有服务注册功能,具有拉取服务信息功能 |
| 配置@EnableDiscoveryClient(autoRegister=false),配置nacos.discovery.enable=false | 服务注册与拉取服务信息功能都不具备 |