I hava application which I'm using to present data from DB. I'm using hibernate which is great. All I need is to build mechanism to auto refresh JTable.
Right now I'm rebuilding table every minute. I would like to refresh cells without this process. I figure out the best way to do it is to implement table model.
In one of table cells I have my Object ( ex. User ) the problem is that when I'm caling SQL query I'm getting new object list and I'm getting error from JTable.
I know that I can update objects one by obe but this is not optimal.
Any help, tutorial etc.