A JavaFX application exists and the application is starting from the Main.class file which extends Application:
JavaFX
Main.class
extends Application
publ
I think you are not supposed to declare @FXML annotated attributes with the static keyword. See this GitHub project on how you should do it. Like that you instantiate a controller only when it is needed, and your app will be stateless.