Azure应用服务:如何允许其余api访问mysql服务器?

时间:2019-05-24 08:45:29

标签: mysql azure rest spring-boot web-services

我已经在azure应用程序服务上将spring-boot应用程序部署为rest api,如何在远程MySql服务器上启用对Web服务的访问?

1 个答案:

答案 0 :(得分:0)

我假设您具有要从Azure Web应用程序/服务访问的本地Sql服务器。有两种方法可以访问本地资源:

  • 使用服务总线中继。
  • 使用Azure混合连接(只能用于Web Apps和Mobile Apps)。

在混合连接中,请确保在SQL Server数据库上启用了TCP端口。要检查,请遵循here中所述的步骤。

Web API中的

连接字符串如下所示

enter image description here

您可以参考本文creation of Azure Hybrid Connection using Azure Portal

希望有帮助。