通过 Dropbox 部署到 Microsoft Azure

Deploying to Microsoft azure via dropbox

我刚开始使用 Azure,部署 Web 应用程序的说明似乎非常简单。所以我的应用程序是一个后端,它在本地运行良好,所以我知道问题不是出在应用程序上,而是出在我的部署上。该应用程序也是用 java 和休眠编写的。我用这个 article to deploy the application to azure but the url still shows this image

在仪表板上,它确实显示应用程序从 dropbox as shown here

获得了代码库

Dropbox 中的文件夹名称和 Eclipse 中的代码库名称相匹配,所以我只是将工作区中的内容复制并粘贴到 Dropbox 中。我也重新启动了应用程序,但没有任何改变。我错过了什么?感谢任何帮助我指明正确方向的人。

查看您的 Azure 映像,它来自裸应用服务 URL 即 .azurewebsites.net,这表明您选择了 Java 8+ 作为运行时并且 Tomcat 8+作为你的容器。您是否使用任何上下文路径来访问您的后端,即 https://HOST:PORT/CONTEXT_PATH. So try with .azurewebsites.net/CONTEXT_PATH. Also if you are using spring-boot you have to edit web.config to run your jar file (like this https://docs.microsoft.com/en-us/java/azure/spring-framework/deploy-spring-boot-java-web-app-on-azure )