Cansei de reproduzir seu problema, mas falhei.
Aqui, tentei criar um java
spring-boot
projeto para testar a conexão com o Azure MySQL Database
. Trecho do meu código:
private static String hostName = "<your host name>";
private static String dbName = "sys";
private static String user = "<user name>";
private static String password = "password";
private static String portNumber = "3306";
@RequestMapping("/hello")
public String index() throws SQLException {
Connection conn = null;
try {
Class.forName("com.mysql.cj.jdbc.Driver");
} catch (ClassNotFoundException e1) {
e1.printStackTrace();
}
try {
String url = "jdbc:mysql://"+hostName+":"+portNumber+"/"+dbName+"?verifyServerCertificate=true&useSSL=true&requireSSL=false&serverTimezone=UTC";
conn = DriverManager.getConnection(url, user, password);
} catch (SQLException e) {
System.out.println("error!!!!");
System.out.println(e.getMessage());
e.printStackTrace();
return e.getMessage();
}
return conn.getCatalog();
}
Meu arquivo web.config:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%JAVA_HOME%\bin\java.exe"
arguments="-Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\demo-0.0.1-SNAPSHOT.jar"">
</httpPlatform>
</system.webServer>
</configuration>
Você pode verificar os pontos abaixo se não conseguir se conectar ao seu banco de dados:
1. Não deixe de definir os parâmetros SSL.
2.Defina o
IP address
branco do seu aplicativo da Web do Azure. 3. Não perca
-Djava.net.preferIPv4Stack=true
configuração em seu web.config
. Você pode encontrar mais detalhes neste tópico:API JavaMail para iMail -- java.net.SocketException:Permissão negada:conectar
Espero que ajude você.