KozinLatifAref-7783, Thanks for posting this question.
--To begin with, you may leverage App Service diagnostics from Azure Portal> Navigate to your App Service app in the Azure Portal. (Screenshot below)
-- In the left navigation, click on Diagnose and solve problems
- Review - “Configuration and Management and “Availability and Performance” ||“Web App down” and “Web App Restarted” options.
(screenshot below)
--Review your POM.xml file. Validate/change the packaging type
is “war” and spring-boot-starter-tomcat
is set to “provided” and then test.
Just as a sample:
[<packaging>war</packaging>
..
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope><!-- this line must be present-->
</dependency>][1]
( screenshot )
I see the following from backend logs- Please verify correctness of the URL.
Please let us know how it goes, I'll follow-up further. Thanks for your patience and collaboration!