1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

Merge pull request #281 from yanglbme/dev

Small changes in doc and java file
This commit is contained in:
xiaojing
2019-01-15 22:33:33 +08:00
committed by GitHub
4 changed files with 14 additions and 14 deletions

View File

@@ -9,9 +9,9 @@ Spring Cloud Alibaba 致力于提供微服务开发的一站式解决方案。
依托 Spring Cloud Alibaba您只需要添加一些注解和少量配置就可以将 Spring Cloud 应用接入阿里微服务解决方案,通过阿里中间件来迅速搭建分布式应用系统。 依托 Spring Cloud Alibaba您只需要添加一些注解和少量配置就可以将 Spring Cloud 应用接入阿里微服务解决方案,通过阿里中间件来迅速搭建分布式应用系统。
参考文档 请查看 [WIKI](https://github.com/spring-cloud-incubator/spring-cloud-alibaba/wiki) 参考文档 请查看 [WIKI](https://github.com/spring-cloud-incubator/spring-cloud-alibaba/wiki)
为 Spring Cloud Alibaba 贡献代码请参考 [如何贡献](https://github.com/spring-cloud-incubator/spring-cloud-alibaba/wiki/%E5%A6%82%E4%BD%95%E8%B4%A1%E7%8C%AE%E4%BB%A3%E7%A0%81) 为 Spring Cloud Alibaba 贡献代码请参考 [如何贡献](https://github.com/spring-cloud-incubator/spring-cloud-alibaba/wiki/%E5%A6%82%E4%BD%95%E8%B4%A1%E7%8C%AE%E4%BB%A3%E7%A0%81)
## 主要功能 ## 主要功能
@@ -71,7 +71,7 @@ Spring Cloud 使用 Maven 来构建最快的使用方式是将本项目clone
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
然后 `dependencies` 中添加自己所需使用的依赖即可使用。 然后 `dependencies` 中添加自己所需使用的依赖即可使用。
如果您想体验最新的 BUILD-SNAPSHOT 的新功能,则可以将版本换成最新的版本,但是需要在 pom.xml 中配置 Spring BUILDSNAPSHOT 仓库,**注意: SNAPSHOT 版本随时可能更新** 如果您想体验最新的 BUILD-SNAPSHOT 的新功能,则可以将版本换成最新的版本,但是需要在 pom.xml 中配置 Spring BUILDSNAPSHOT 仓库,**注意: SNAPSHOT 版本随时可能更新**

View File

@@ -4,14 +4,14 @@ Spring Cloud Alibaba 致力于提供分布式应用服务开发的一站式解
此项目包含的组件内容,主要选取自阿里巴巴开源中间件和阿里云商业化产品,但也不限定于这些产品。 此项目包含的组件内容,主要选取自阿里巴巴开源中间件和阿里云商业化产品,但也不限定于这些产品。
如果您对 Roadmap 有任何建议或想法,欢迎在 issue 中或者通过其他社区渠道向我们提出,一起讨论。 如果您对 Roadmap 有任何建议或想法,欢迎在 issues 中或者通过其他社区渠道向我们提出,一起讨论。
## 已包含的组件 ## 已包含的组件
**Sentinel** **Sentinel**
阿里巴巴开源产品,把流量作为切入点,从流量控制熔断降级系统负载保护等多个维度保护服务的稳定性。 阿里巴巴开源产品,把流量作为切入点,从流量控制熔断降级系统负载保护等多个维度保护服务的稳定性。
**Nacos** **Nacos**
@@ -25,7 +25,7 @@ Spring Cloud Alibaba 致力于提供分布式应用服务开发的一站式解
Apache RocketMQ™ 基于 Java 的高性能、高吞吐量的分布式消息和流计算平台。 Apache RocketMQ™ 基于 Java 的高性能、高吞吐量的分布式消息和流计算平台。
**Alibaba Cloud Schedulerx** **Alibaba Cloud SchedulerX**
阿里中间件团队开发的一款分布式任务调度产品,支持周期性的任务与固定时间点触发任务。 阿里中间件团队开发的一款分布式任务调度产品,支持周期性的任务与固定时间点触发任务。

View File

@@ -65,7 +65,7 @@ public class NacosDiscoveryClient implements DiscoveryClient {
nacosServiceInstance.setHost(instance.getIp()); nacosServiceInstance.setHost(instance.getIp());
nacosServiceInstance.setPort(instance.getPort()); nacosServiceInstance.setPort(instance.getPort());
nacosServiceInstance.setServiceId(serviceId); nacosServiceInstance.setServiceId(serviceId);
Map<String, String> metadata = new HashMap<String, String>(); Map<String, String> metadata = new HashMap<>();
metadata.put("instanceId", instance.getInstanceId()); metadata.put("instanceId", instance.getInstanceId());
metadata.put("weight", instance.getWeight() + ""); metadata.put("weight", instance.getWeight() + "");
metadata.put("healthy", instance.isHealthy() + ""); metadata.put("healthy", instance.isHealthy() + "");
@@ -82,7 +82,7 @@ public class NacosDiscoveryClient implements DiscoveryClient {
private static List<ServiceInstance> hostToServiceInstanceList( private static List<ServiceInstance> hostToServiceInstanceList(
List<Instance> instances, String serviceId) { List<Instance> instances, String serviceId) {
List<ServiceInstance> result = new ArrayList<ServiceInstance>(instances.size()); List<ServiceInstance> result = new ArrayList<>(instances.size());
for (Instance instance : instances) { for (Instance instance : instances) {
result.add(hostToServiceInstance(instance, serviceId)); result.add(hostToServiceInstance(instance, serviceId));
} }