Skip to content

Commit ad58ddf

Browse files
committed
update java tutorial link
1 parent 21ba05c commit ad58ddf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/service-connector/includes/code_mysql_aad.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ ms.author: xiaofanzhou
3030
```java
3131
String url = System.getenv("AZURE_MYSQL_CONNECTIONSTRING");
3232
String pluginName = "com.azure.identity.extensions.jdbc.mysql.AzureMysqlAuthenticationPlugin";
33-
Connection connection = DriverManager.getConnection(url + "&defaultAuthenticationPlugin=" + pluginName +
34-
"&authenticationPlugins=" + pluginName);
33+
Connection connection = DriverManager.getConnection(url + "&defaultAuthenticationPlugin=" +
34+
pluginName + "&authenticationPlugins=" + pluginName);
3535
```
3636

37+
For more information, see [Use Java and JDBC with Azure Database for MySQL - Flexible Server](../../mysql/flexible-server/connect-java.md?tabs=passwordless).
38+
3739
### [Spring](#tab/spring)
3840

3941
For a Spring application, if you create a connection with option `--client-type springboot`, Service Connector will set the properties `spring.datasource.passwordless_enabled`, `spring.datasource.url`, and `spring.datasource.username` to Azure Spring Apps.
@@ -87,4 +89,3 @@ For more code samples, see [Connect to Azure databases from App Service without
8789

8890
---
8991

90-
For more information, see [Use Java and JDBC with Azure Database for MySQL - Flexible Server](../../mysql/flexible-server/connect-java.md?tabs=passwordless).

0 commit comments

Comments
 (0)