I need to send the content of a JTable
to a REST Service. For this purpose, I'd like to send the TableModel
to the REST Service. However, I can see that the TableModel
class is not Serializable
.
Is there any other option other than copying the TableModel
in a wrapper Java class (Serializable
)?