I have a backend server (Jetty) that processes HTTP requests and interacts with a MySQL database.
It is all wired-up with Spring.
I have also a UI front end in Swing that serves as an administrator's tool (the user can interact with the DB etc).
Right now the server and the UI is somewhat bundled, meaning that when the main class starts to load, it first starts the Spring context and then starts the UI (in the EDT thread).
So essentially as long as the UI runs the server is listening for requests.
The problem I have is the following:
I would like to show the GUI after the server has been fully initialized and actually I would prefer during the GUI startup to actually connect to the server and get some data, so that they are displayed once the GUI appears on screen.
Right now I achieve this, by adding a sleep of a few seconds before starting to create the GUI in the EDT thread.
This solves it, but the delay is arbitrary and I guess it depends on the target machine.
Also it makes the GUI take long time to appear (delay now is 10 seconds).
I am trying to figure out the best way to know that Spring context and back-end Jetty has been fully initialized before showing the GUI.
One approach I guess would be try to send a request to the server and if it fails, keep trying for a number of times until it succeeds and then show GUI.
But I was wondering if there is a more standard approach.
Any input is highly welcome.