Annotation Interface AfterStop


@Inherited @Retention(RUNTIME) @Target(METHOD) public @interface AfterStop
Mark a static method to be executed after the container is stopped.

E.g.

 @AfterStop
 static void afterStop() {
     // ...
 }