io.polyglotted.applauncher.server.ServerShutdownHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app-launcher Show documentation
Show all versions of app-launcher Show documentation
Launch an in-process application
The newest version!
package io.polyglotted.applauncher.server;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
@Slf4j
@RequiredArgsConstructor
public class ServerShutdownHook extends Thread {
private final Server server;
@Override
public void run() {
log.info("Shutting down server");
server.stop();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy