如何在 Web 应用上部署 Spring Boot 项目
可以通过以下步骤在 Web 应用上完成 Spring Boot 项目的部署:
构建 SpringBoot 项目,您可以在此下载示例代码。
在 Azure 中创建一个 Web 应用。
配置 Java 运行环境。
上载 Spring Boot 的可执行 jar 文件到 wwwroot 下。
配置 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" stdoutLogEnabled ="true" arguments="-Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%\site\wwwroot\springbootsample-1.0.0.jar""> </httpPlatform> </system.webServer> </configuration>
启动应用执行。