I'm currently writing a web application in java using GWT 2.0 in eclipse. I wanted to know if there is a way to use Gson library in a GWT application's client code.
and if there is a way - please tell me how...
Thanks!
|
I'm currently writing a web application in java using GWT 2.0 in eclipse. I wanted to know if there is a way to use Gson library in a GWT application's client code. and if there is a way - please tell me how... Thanks! |
|||||||
|
|
Not exactly what you wrote but I guess that what you meant was how to serialize/deserialize JSON in GWT code? In GWT 2.1.1 you can use GWT AutoBean framework See there at the bottom of the article it has this magic code ...
the serializeToJson() woks fine for me even with instances that are inherit Person but I did not try the deserializeFromJson... |
|||
|
|
|
Gson uses Java features that are not supported in GWT such as reflection. Thus it is not possible to use Gson in GWT client side code. |
|||||||||
|
|
In our GWT project we use piriti: http://code.google.com/p/piriti/ Works like a charm :-) |
|||
|
|
|
I have write a library that allows using GWT with Gson, you can download here and enjoy it. |
|||
|
|