Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

my spring-boot mvc application always shutdown by showing

Tags:

spring-boot

   .   ____          _            __ _ _
  /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
 ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
   '  |____| .__|_| |_|_| |_\__, | / / / /
  =========|_|==============|___/=/_/_/_/
  :: Spring Boot ::        (v1.5.6.RELEASE)


 2017-09-03 16:43:53.881  INFO 6584 --- [           main] c.n.SpringBootMvcExampleApplication      : Starting SpringBootMvcExampleApplication on lenovo-PC with PID 6584 (C:\Users\lenovo\Documents\workspace-sts-3.8.4.RELEASE\SpringBootMVCExample\target\classes started by lenovo in C:\Users\lenovo\Documents\workspace-sts-3.8.4.RELEASE\SpringBootMVCExample)
 2017-09-03 16:43:53.896  INFO 6584 --- [           main] c.n.SpringBootMvcExampleApplication      : No active profile set, falling back to default profiles: default
 2017-09-03 16:43:54.218  INFO 6584 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@6e38921c: startup date [Sun Sep 03 16:43:54 IST 2017]; root of context hierarchy
 2017-09-03 16:43:56.213  INFO 6584 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup 2017-09-03 16:43:56.294  INFO 6584 --- [           main] c.n.SpringBootMvcExampleApplication      : Started SpringBootMvcExampleApplication in 3.284 seconds (JVM running for 3.931)
 2017-09-03 16:43:56.297  INFO 6584 --- [       Thread-3] s.c.a.AnnotationConfigApplicationContext : Closing org.springframework.context.annotation.AnnotationConfigApplicationContext@6e38921c: startup date [Sun Sep 03 16:43:54 IST 2017]; root of context hierarchy
 2017-09-03 16:43:56.304  INFO 6584 --- [       Thread-3] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-exposed beans on shutdown
like image 541
Saroj Mohanty Avatar asked Oct 26 '25 01:10

Saroj Mohanty


1 Answers

Please add the below dependency in pom.xml.

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

Sometimes because of jar conflicts in maven, spring boot will shutdown automatically. So Please share pom.xml if the problem still persists eventhough adding above dependency.

like image 88
Mohammed Abdullah Avatar answered Oct 28 '25 18:10

Mohammed Abdullah



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!