Springboot shuts down automatically when it starts

springboot:"Unregistering JMX-exposed beans on shutdown" 
tomcat
 <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <scope>provided</scope>
    </dependency>
    
<scope>provided</scope>
Mar.18,2021

need to add this

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>

how to solve the gradle project

Menu