3225470df5
Revert "BAEL-3275: Using blocking queue for pub-sub"
12 lines
232 B
Java
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!");
|
|
}
|
|
}
|