听起来您的SpringBoot项目缺少一个
web.config文件,该文件将部署在
wwwroot帮助处理您的路径上
ROOT.jar。
这是
web.configSpringBoot可运行jar 的示例文件。
<?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%binjava.exe" arguments="-Djava.net.preferIPv4Stack=true -Dserver.port=%HTTP_PLATFORM_PORT% -jar "%HOME%sitewwwrootROOT.jar""> </httpPlatform> </system.webServer></configuration>
如上所述,它来自于我类似的将Springboot部署到Azure App
Service的 SO线程的答案,您可以参考。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)