I'm allocating my project to Payara Server with clustering for high avaiability. My project is in Java Web and it uses JSF Framework with Primefaces with some extended classes, like DataTable, for example (org.primefaces.component.datatable.DataTable).
As this class does not implement a serializable interface, I'm not able to succeed at the server replication failure, as the server demands all classes to be serialized.
What should I do at this situation where I need all classes to be serialized, but I don't have any control over the classes used by third parties frameworks?