Skip to content

Commit 8c6d7f0

Browse files
authored
Merge pull request #192036 from v-kevinmic3/master
Update article to correct terminology on Spring Cloud Service Registry
2 parents 63b9e80 + 416deb1 commit 8c6d7f0

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

articles/spring-cloud/how-to-config-server.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Set up your Config Server instance in Azure Spring Cloud
3-
description: Learn how to set up a Spring Cloud Config Server instance for Azure Spring Cloud on the Azure portal
2+
title: Configure your managed Spring Cloud Config Server in Azure Spring Cloud
3+
description: Learn how to configure a managed Spring Cloud Config Server in Azure Spring Cloud on the Azure portal
44
ms.service: spring-cloud
55
ms.topic: how-to
66
ms.author: karler
@@ -9,15 +9,15 @@ ms.date: 12/10/2021
99
ms.custom: devx-track-java
1010
---
1111

12-
# Set up a Spring Cloud Config Server instance for your service
12+
# Configure a managed Spring Cloud Config Server in Azure Spring Cloud
1313

1414
**This article applies to:** ✔️ Java ✔️ C#
1515

1616
**This article applies to:** ✔️ Basic/Standard tier ❌ Enterprise tier
1717

18-
This article shows you how to connect a Spring Cloud Config Server instance to your Azure Spring Cloud service.
18+
This article shows you how to configure a managed Spring Cloud Config Server in Azure Spring Cloud service.
1919

20-
Spring Cloud Config provides server and client-side support for an externalized configuration in a distributed system. The Config Server instance provides a central place to manage external properties for applications across all environments. For more information, see the [Spring Cloud Config Server reference](https://spring.io/projects/spring-cloud-config).
20+
Spring Cloud Config Server provides server and client-side support for an externalized configuration in a distributed system. The Config Server instance provides a central place to manage external properties for applications across all environments. For more information, see the [Spring Cloud Config Server reference](https://spring.io/projects/spring-cloud-config).
2121

2222
## Prerequisites
2323

articles/spring-cloud/how-to-service-registration.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Automate service registry and discovery
3-
description: Learn how to automate service discovery and registration using Spring Cloud Service Registry
2+
title: Discover and register your Spring Boot applications in Azure Spring Cloud
3+
description: Discover and register your Spring Boot applications with managed Spring Cloud Service Registry (OSS) in Azure Spring Cloud
44
author: karlerickson
55
ms.service: spring-cloud
66
ms.topic: conceptual
@@ -10,11 +10,11 @@ ms.custom: devx-track-java
1010
zone_pivot_groups: programming-languages-spring-cloud
1111
---
1212

13-
# Discover and register your Spring Cloud services
13+
# Discover and register your Spring Boot applications
1414

1515
**This article applies to:** ✔️ Basic/Standard tier ❌ Enterprise tier
1616

17-
Service registration and discovery are key requirements for maintaining a list of live app instances to call, and routing and load balancing inbound requests. Configuring each client manually takes time and introduces the possibility of human error. Azure Spring Cloud Service Registry solves this problem. Once configured, a Service Registry server will control service registration and discovery for your applications. The Service Registry server maintains a registry of live app instances, enables client-side load-balancing, and decouples service providers from clients without relying on DNS.
17+
Service registration and discovery are key requirements for maintaining a list of live app instances to call, and routing and load balancing inbound requests. Configuring each client manually takes time and introduces the possibility of human error. Managed Spring Cloud Service Registry (OSS) in Azure Spring Cloud solves this problem. Once configured, a Service Registry server will control service registration and discovery for your applications. The Service Registry server maintains a registry of live app instances, enables client-side load-balancing, and decouples service providers from clients without relying on DNS.
1818

1919
::: zone pivot="programming-language-csharp"
2020
For information about how to set up service registration for a Steeltoe app, see [Prepare a Java Spring application for deployment in Azure Spring Cloud](how-to-prepare-app-deployment.md).
@@ -23,8 +23,7 @@ For information about how to set up service registration for a Steeltoe app, see
2323

2424
## Register your application using Spring Cloud Service Registry
2525

26-
Before your application can manage service registration and discovery using Spring Cloud Service Registry, several dependencies must be included in the application's *pom.xml* file.
27-
Include dependencies for *spring-cloud-starter-netflix-eureka-client* and *spring-cloud-starter-azure-spring-cloud-client* to your *pom.xml*
26+
Before your application can manage service registration and discovery using Spring Cloud Service Registry, you must include the dependency for *spring-cloud-starter-netflix-eureka-client* to your *pom.xml*
2827

2928
```xml
3029
<dependency>

0 commit comments

Comments
 (0)