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
Copy file name to clipboardExpand all lines: articles/service-connector/includes/code-sql-me-id.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ For more information, see [Connect using Microsoft Entra authentication](/sql/co
59
59
60
60
### [SpringBoot](#tab/spring)
61
61
62
-
For a Spring application, if you create a connection with option `--client-type springboot`, Service Connector will set the properties `spring.datasource.url` with value format `jdbc:sqlserver://<sql-server>.database.windows.net:1433;databaseName=<sql-db>;authentication=ActiveDirectoryMSI;` to Azure Spring Apps.
62
+
For a Spring application, if you create a connection with option `--client-type springboot`, Service Connector sets the properties `spring.datasource.url` with value format `jdbc:sqlserver://<sql-server>.database.windows.net:1433;databaseName=<sql-db>;authentication=ActiveDirectoryMSI;` to Azure Spring Apps.
63
63
64
64
Update your application following the tutorial [Migrate a Java application to use passwordless connections with Azure SQL Database](/azure/developer/java/spring-framework/migrate-sql-database-to-passwordless-connection?tabs=spring%2Capp-service%2Cassign-role-service-connector#2-migrate-the-app-code-to-use-passwordless-connections). Remember to remove the `spring.datasource.password` configuration property if it was set before and add the correct dependencies.
65
65
@@ -99,19 +99,19 @@ Update your application following the tutorial [Migrate a Java application to us
99
99
100
100
### [Django](#tab/django)
101
101
102
-
The client type`Django`is not supported for system-assigned managed identity, user-assigned managed identity and service principal.
102
+
The client type`Django`isn't supported for system-assigned managed identity, user-assigned managed identity and service principal.
103
103
104
104
### [Go](#tab/go)
105
105
106
-
The client type`Go`is not supported for system-assigned managed identity, user-assigned managed identity and service principal.
106
+
The client type `Go` isn't supported for system-assigned managed identity, user-assigned managed identity and service principal.
107
107
108
108
### [NodeJS](#tab/nodejs)
109
109
110
110
1. Install dependencies.
111
111
```bash
112
112
npm install mssql
113
113
```
114
-
1. Get the Azure SQL Database connection configurations from the environment variables added by Service Connector.When using the code below, uncomment the part of the code snippet for the authentication type you want to use.
114
+
1. Get the Azure SQL Database connection configurations from the environment variables added by Service Connector.When using the code below, uncomment the part of the code snippet for the authentication type you want to use.
115
115
```javascript
116
116
import sql from 'mssql';
117
117
@@ -177,11 +177,11 @@ The client type `Go` is not supported for system-assigned managed identity, user
177
177
178
178
### [PHP](#tab/php)
179
179
180
-
The client type`PHP`is not supported for system-assigned managed identity, user-assigned managed identity and service principal.
180
+
The client type`PHP`isn't supported for system-assigned managed identity, user-assigned managed identity and service principal.
181
181
182
182
### [Ruby](#tab/ruby)
183
183
184
-
The client type`Ruby`is not supported for system-assigned managed identity, user-assigned managed identity and service principal.
184
+
The client type `Ruby` isn't supported for system-assigned managed identity, user-assigned managed identity and service principal.
0 commit comments