Skip to content

Commit ef80650

Browse files
committed
edits
1 parent a883fd8 commit ef80650

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/spring-apps/how-to-enterprise-application-configuration-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ To validate access to the target URI, select **Validate**. After validation comp
8989

9090
## Polyglot support
9191

92-
The Application Configuration Service for Tanzu works seamlessly with Spring Boot applications. The properties generated by the service are imported as external configurations by Spring Boot and injected into the beans. You don't need to write extra code but consume the value by using the @Value annotation, accessed through Springs Environment abstraction, or be bound to structured objects through @ConfigurationProperties
92+
The Application Configuration Service for Tanzu works seamlessly with Spring Boot applications. The properties generated by the service are imported as external configurations by Spring Boot and injected into the beans. You don't need to write extra code. You can consume the values by using the `@Value` annotation, accessed through Spring's Environment abstraction, or you can bind them to structured objects by using the `@ConfigurationProperties` annotation.
9393

94-
Meanwhile, it also supports polyglot apps like dotnet, Go, Python, etc. To access config files that you specify to load during polyglot app deployment in the apps, please try to access a file path that you can retrieve by an environment variable named as `AZURE_SPRING_APPS_CONFIG_FILE_PATH`. All your intended config files can be accessed under that path. To access the property values in config files, you need to leverage existing read/write file libraries for your app.
94+
The Application Configuration Service also supports polyglot apps like dotNET, Go, Python, and so on. To access config files that you specify to load during polyglot app deployment in the apps, try to access a file path that you can retrieve through an environment variable with a name such as `AZURE_SPRING_APPS_CONFIG_FILE_PATH`. You can access all your intended config files under that path. To access the property values in the config files, use the existing read/write file libraries for your app.
9595

9696
## Refresh strategies
9797

0 commit comments

Comments
 (0)