Our project is an RCP Eclipse application using Hibernate as an ORM. I recently learned about JFace data binding, in which the GUI and data models can be synchronized automatically.
I put together a short test implementation on the Lars Vogel line, the excellent JFace Data Binding Tutorial, and was impressed with the frame.
Is it possible to associate this with Hibernate so that changes to the observed widget are automatically saved to the database? This seems like a natural thing to do, and yet I have not found any good textbooks.
I suspect that I may bark the wrong tree or skip the fundamental concept.
Has anyone tried to do this? What is the "best practice" here?
source share