Skip to content

Instantly share code, notes, and snippets.

@jeffscottbrown
Created November 1, 2021 14:29
Show Gist options
  • Save jeffscottbrown/b24a7cbdb0ceb0e53b29c988cdc36940 to your computer and use it in GitHub Desktop.
Save jeffscottbrown/b24a7cbdb0ceb0e53b29c988cdc36940 to your computer and use it in GitHub Desktop.
import io.micronaut.runtime.event.annotation.EventListener;
import io.micronaut.runtime.server.event.ServerStartupEvent;
import javax.inject.Singleton;
@Singleton
public class MyBean {
@EventListener
public void onStartup(ServerStartupEvent event) {
// logic here
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment