I'm stuck trying to deploy my restfull app I have developped with Spring. It is working on localhost, giving me the expected result when questionning my differents routes I have made with @RequestMapping(/xxx) using cUrl.
Now I would like to try to deploy it to azure so I would be able to cUrl it but with the azure's url (is that clear?).
I have tried these methods:
- Directly via the eclipse azure plugin (see below)
- Using the Azure app Service for container : https://docs.microsoft.com/en-us/azure/java/spring-framework/deploy-spring-boot-java-app-on-linux
- By deploying a JAR : https://docs.microsoft.com/fr-fr/azure/java/spring-framework/deploy-spring-boot-java-app-with-maven-plugin
- Some others tricks that I have found on the web
But I m always stuck on this page and the app is not responding to my cUrls calls. Any idea on what I may be doing wrong?


