Mi sono stancato di riprodurre il tuo problema ma non ci sono riuscito.
Qui, ho provato a creare un spring-boot
java progetto per testare la connessione con Azure MySQL Database
.
Snippet del mio codice:
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();
}
Il mio file 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>
Puoi controllare i punti come di seguito se non riesci a connetterti al tuo database:
1.Non perdere i parametri SSL impostati.
2.Impostare IP address
bianco della tua app Web di Azure.
3.Non perdere -Djava.net.preferIPv4Stack=true
impostazione nel tuo web.config
.
Puoi trovare maggiori dettagli da questo thread:API JavaMail su iMail -- java.net.SocketException:Permesso negato:connetti
Spero che ti aiuti.