I have a Netbeans Platform application. Upon opening the main frame, i want to populate a GUI table with elements pulled from a database.
Where is the best place to have this code? I have tried the componentOpened() method but I get a thread deadlock. Even using invokeLater() I run into threading issues.
@Override
public void componentOpened() {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
List<UserBO> al = UserDelegate.getInstance().getUsers();
for (UserBO u : al) {
System.out.println("User " + u);
}
}
});
// TODO add custom code on component opening
}
The above code always causes thread deadlocks. I am not sure if componentOpened() the right method is to have this code.
Solution. Put the DB reading code in the constructor of the component (ie "Top Component"). Then use the Netbeans RequestProcessor.
This now works