Hello, I'm trying to implement some serializers/deserializers for JavaFX properties and have run into several issues:
1. Jackson's annotations are not usable as the classes in JavaFX are all part of the JDK not my own code-base 2. There is inherent cycles in properties due to "bean references" in javafx.beans.property.ReadOnlyProperty#getBean() <https://docs.oracle.com/javase/8/javafx/api/javafx/beans/property/ReadOnlyProperty.html#getBean--> which stores a reference to the "owning" bean My question is, how can I utilize repeated references to the bean and not reserialize them similar to how @JsonBackReference and @JsonManagedReference work without having annotations present? Thanks, Kevin -- You received this message because you are subscribed to the Google Groups "jackson-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. For more options, visit https://groups.google.com/d/optout.
