Files
spring-boot-rest/spring-boot/src/main/java/com/baeldung/shutdown/TerminateBean.java
Mher Baghinyan 19fb7ef5a2 Bael 1625 (#3831)
* shutdown boot app

* test the ctx.close()

* application shutdown test

* BAEL-1625

* /shutdown endpoint test

* bring back the closeApplication

* @Ignore shutdown endpoint test
2018-04-02 07:56:55 +02:00

12 lines
232 B
Java

package com.baeldung.shutdown;
import javax.annotation.PreDestroy;
public class TerminateBean {
@PreDestroy
public void onDestroy() throws Exception {
System.out.println("Spring Container is destroyed!");
}
}