I\'ve got myself an Azure Web App Service and a SQL database to go with it. I\'m using Azures Intellij plugin to \"Run On Web App\". Issue is, it doesn\'t run anything, however
It sounds like your SpringBoot project lacked a web.config
file which will be deployed at the path wwwroot
for helping to handle your ROOT.jar
.
Here is a sample web.config
file for SpringBoot runnable jar.
As above, it comes from my answer of a similar SO thread Deploying Springboot to Azure App Service which you can refer to.