@Override
public void start(Stage primaryStage) throws Exception {
FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("mainframe.fxml")); //смотрит уже в resources
primaryStage.initStyle(StageStyle.TRANSPARENT);
primaryStage.setScene(new Scene(fxmlLoader.load(), 1100, 700));
primaryStage.show();
}