You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -23,7 +23,7 @@ Service registration and discovery are key requirements for maintaining a list o
23
23
24
24
* Use Kubernetes Service Discovery approach to invoke calls among your apps.
25
25
26
-
Azure Spring Apps creates a corresponding kubernetes service for every app running in it using app name as the kubernetes service name. So you can invoke calls in one app to another app by using app name in a http/https request like http(s)://{app name}/path. And this approach is also suitable for Enterprise tier.
26
+
Azure Spring Apps creates a corresponding Kubernetes service for every app running in it using the app name as the Kubernetes service name. You can invoke calls from one app to another app by using the app name in an HTTP/HTTPS request such as `http(s)://{app name}/path`. This approach is also suitable for Enterprise tier. For more information, see the [Kubernetes registry code sample](https://github.com/Azure-Samples/Azure-Spring-Cloud-Samples/tree/master/k8s-service-registry).
27
27
28
28
* Use Managed Spring Cloud Service Registry (OSS) in Azure Spring Apps.
29
29
@@ -39,7 +39,7 @@ For information about how to set up service registration for a Steeltoe app, see
39
39
40
40
## Register your application using Spring Cloud Service Registry
41
41
42
-
Before your application can manage service registration and discovery using Spring Cloud Service Registry, you must include the following dependency for *spring-cloud-starter-netflix-eureka-client* to your *pom.xml*:
42
+
Before your application can manage service registration and discovery using Spring Cloud Service Registry, you must include the following dependency for `spring-cloud-starter-netflix-eureka-client` in your *pom.xml* file:
43
43
44
44
```xml
45
45
<dependency>
@@ -50,7 +50,7 @@ Before your application can manage service registration and discovery using Spri
50
50
51
51
## Update the top level class
52
52
53
-
Finally, add an annotation to the top level class of your application as shown in the following example:
53
+
Finally, add an annotation to the top level class of your application, as shown in the following example:
54
54
55
55
```java
56
56
packagefoo.bar;
@@ -74,3 +74,7 @@ The Spring Cloud Service Registry server endpoint will be injected as an environ
74
74
> [!NOTE]
75
75
> It can take a few minutes for the changes to propagate from the server to all applications.
76
76
::: zone-end
77
+
78
+
## Next steps
79
+
80
+
In this article, you learned how to register your application using Spring Cloud Service Registry. To learn how to access the Spring Cloud Service Registry using Azure Active Directory (Azure AD) role-based access control (RBAC), see [Access Config Server and Service Registry](how-to-access-data-plane-azure-ad-rbac.md).
0 commit comments