JavaFX binding and hibernate

in your opinion, what would be the best way to bind my hibernate mapped classes to JavaFX views? Or maybe should I not use binding to do this and should I do another way?

As JavaFX uses some bindable properties, like StringProperty, ObservableList, and my model classes uses the common String, List, properties what would be the best way to do it ?

I know that a possible solution would be to create adapter classes, but I’m looking for the simplest solution.

Check out this StackOverflow thread: