I deploy a spring boot application on azure (app service), but it takes many time to get started (20 minutes sometimes), I always have in the logs this line with many occurences :
Waiting for response to warmup request for container myapp_id_on_azure_0_917c0e77. Elapsed time = 326.0884541 sec
I seems to wait something to effectively start the application ... but what ? Anyone have tips ?
FYI : I execute : java -jar /home/site/wwwroot/my_app.jar for starting my application. I not define any server port in application.properties on my spring boot application. I also verify that on "general settings" of the app service the option "always on" is enabled ...