I\'m using Javafx, and I wrap my objects into ListProperty to let the tableview updates for any changes on the objects of the list. Now I\'m trying to serialize my project a
You will need to create a custom serialization for your project.
Refer to the following articles for details:
Alternately, you could write serialize using a text format such as JSON or XML using technology such as JAXB or javax.json.
All JavaFX projects (and pretty much every object in the JavaFX framework as of JavaFX 2.x), does not implement Serializable so you cannot directly serialize a JavaFX property.