Json <-> Java serialization that works with GWT
Posted
by amartynov
on Stack Overflow
See other posts from Stack Overflow
or by amartynov
Published on 2009-03-25T19:40:40Z
Indexed on
2010/04/01
7:23 UTC
Read the original article
Hit count: 320
I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. Quite a boring. Why don't we have something really simple like
class MyBean {
...
}
new GoodSerializer().makeString(new MyBean());
new GoodSerializer().makeObject("{ ... }", MyBean.class)
© Stack Overflow or respective owner