On the client side, a user specified input creates a unique TreeModel and TableModel.

This needs to be serialized to JSON for storage on MongoDB (stores JSON document directly).

The JSON needs to be parsed back into a TreeModel or TableModel which will be rendered again on the client side software.

Any library or existing codes which can faciliate this?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

TreeModel and TableModel are just interfaces without data therefore they cant be serialized. However when you talk about TreeModel implementation e.g. DefaultTreeModel you can serialize it to Json using Jackson POJO data binding

link|improve this answer
feedback

Have you tried Jackson?

http://jackson.codehaus.org/Tutorial

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.