Json <-> Java serialization that works with GWT - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T23:00:16Zhttp://stackoverflow.com/feeds/question/683123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt3Json <-> Java serialization that works with GWTamartynov2009-03-25T19:40:40Z2009-11-17T19:11:53Z
<p>I am looking for a <em>simple</em> 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</p>
<pre><code>class MyBean {
...
}
new GoodSerializer().makeString(new MyBean());
new GoodSerializer().makeObject("{ ... }", MyBean.class)
</code></pre>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt/683245#6832450Answer by R. Bemrose for Json <-> Java serialization that works with GWTR. Bemrose2009-03-25T20:11:14Z2009-03-25T20:11:14Z<p>OK, I deleted my previous answer because it turned out to be exactly what you didn't want.</p>
<p>I don't know how well it works with GWT, but we use the <a href="http://json-lib.sourceforge.net/" rel="nofollow">json-lib</a> library to serialize objects in a normal Java project where I work.</p>
<p>It can <a href="http://json-lib.sourceforge.net/snippets.html#Creating%5Fa%5FJSONObject%5Ffrom%5Fa%5FJavaBean" rel="nofollow">create a JSONObject directly from a JavaBean</a>, then use the resulting JSONObject's toString() method to get the actual JSON string back.</p>
<p>Likewise, it can also turn <a href="http://json-lib.sourceforge.net/snippets.html#JSONObject%5Fto%5FJavaBean" rel="nofollow">JSON back into a JavaBean</a>.</p>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt/683447#6834471Answer by R. Bemrose for Json <-> Java serialization that works with GWTR. Bemrose2009-03-25T21:04:59Z2009-03-25T21:04:59Z<p>I seem to be answering this question a lot...</p>
<p>There's a page on code.google.com titled <a href="http://code.google.com/support/bin/answer.py?answer=65632&topic=11368" rel="nofollow">Using GWT for JSON Mashups</a>. It's (unfortunately) way over my head, as I'm not that familiar with GWT, so it may not be helpful. </p>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt/684350#6843500Answer by StaxMan for Json <-> Java serialization that works with GWTStaxMan2009-03-26T02:45:44Z2009-03-26T02:45:44Z<p>Not sure if Jackson (<a href="http://jackson.codehaus.org/Tutorial" rel="nofollow">http://jackson.codehaus.org/Tutorial</a>) would work for you.
I don't know if there's GWT-specific you are looking for; if not it should work.</p>
<p>But its serialization/deserialization works quite well, like:</p>
<p>// read json, create object</p>
<p>ObjectMapper mapper = new ObjectMapper();</p>
<p>MyBean bean = mapper.readValue(jsonAsString, MyBean.class);</p>
<p>// and write out</p>
<p>StringWriter sw = new StringWriter();</p>
<p>mapper.writeValue(sw, user);</p>
<p>String jsonOut = sw.toString();</p>
<p>You do need accessors (getx() to serializer, setX() to deserialize; can annotate methods with other names), but that's about it.</p>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt/684887#6848871Answer by amartynov for Json <-> Java serialization that works with GWTamartynov2009-03-26T08:05:45Z2009-03-26T08:05:45Z<p>It seems that I found the right answer to my question</p>
<p>I figured out that bean to json and json to bean conversion in GWT isn't a trivial task. Known libraries would not work because GWT would require their full source code and this source code must use only Java classes that are amoung emulated by GWT. Also, you cannot use reflection in GWT. Very tough requirements!</p>
<p>I found the only existing solution named <a href="http://code.google.com/p/gwt-jsonizer/" rel="nofollow">gwt-jsonizer</a>. It uses a custom <a href="http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/core/ext/Generator.html" rel="nofollow">Generator</a> class and requires a satellite interface for each "jsonable" bean. Unfortunately, it does not work without patching on the latest version of GWT and has not been updated for a long time.</p>
<p>So, I personally decided that it is cheaper and faster to make my beans khow how to convert themselves to and from json. Like this:</p>
<pre><code>public class SmartBean {
private String name;
public String getName() { return name; }
public void setName(String value) { name = value; }
public JSONObject toJson() {
JSONObject result = new JSONObject();
result.put("name", new JSONString(this.name));
return result;
}
public void fromJson(JSONObject value) {
this.name = value.get("name").isString().stringValue();
}
}
</code></pre>
<p><code>JSONxxxx</code> are GWT built-in classes that provide low-level json support.</p>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt/736919#7369194Answer by Chris Kentfield for Json <-> Java serialization that works with GWTChris Kentfield2009-04-10T07:03:13Z2009-04-10T07:37:11Z<p>Take a look at GWT's <a href="http://code.google.com/p/google-web-toolkit/wiki/OverlayTypes" rel="nofollow">Overlay Types</a>. I think this is by far the easiest way to work with JSON in GWT. Here's a modified code example from the linked article:</p>
<pre><code>public class Customer extends JavaScriptObject {
public final native String getFirstName() /*-{
return this.first_name;
}-*/;
public final native void setFirstName(String value) /*-{
this.first_name = value;
}-*/;
public final native String getLastName() /*-{
return this.last_name;
}-*/;
public final native void setLastName(String value) /*-{
this.last_name = value;
}-*/;
}
</code></pre>
<p>Once you have the overlay type defined, it's easy to create a JavaScript object from JSON and access its properties in Java:</p>
<pre><code>public static final native Customer buildCustomer(String json) /*-{
return eval('(' + json + ')');
}-*/;
</code></pre>
<p>If you want the JSON representation of the object again, you can wrap the overlay type in a JSONObject:</p>
<pre><code>Customer customer = buildCustomer("{'Bart', 'Simpson'}");
customer.setFirstName("Lisa");
// Displays {"first_name":"Lisa","last_name":"Simpson"}
Window.alert(new JSONObject(customer).toString());
</code></pre>
http://stackoverflow.com/questions/683123/json-java-serialization-that-works-with-gwt/1750654#17506541Answer by mooreds for Json <-> Java serialization that works with GWTmooreds2009-11-17T17:58:27Z2009-11-17T19:11:53Z<p>In Google Web Toolkit Applications, pages 510 to 522, the author, Ryan Dewsbury, shows how to use GWT code generation to do serialization to and from XML and JSON documents.</p>
<p>You can <a href="http://groups.google.com/group/gwtapps/files" rel="nofollow">download the code here</a>; you want the chapter 10 code bundles, and then you want to look in the src/com/gwtapps/serialization package. I did not see a license for this code, but have emailed the author to see what he says. I'll update this if he replies.</p>
<p>Issues with this solution:</p>
<ul>
<li>You have to add a marker interface on all your objects that you want serialized (he uses java.io.Serializable but I imagine you could use others--if you are using hibernate for your backend, your pojos might already be tagged like this).</li>
<li>The code only supports string properties; it could be extended.</li>
<li>The code is only written for 1.4 and 1.5.</li>
</ul>
<p>So, this is not an out of the box solution, but a great starting point for someone to build a JSON serializer that fits with GWT. Combine that with a JSON serializer on the server side, like <a href="http://json-lib.sourceforge.net/" rel="nofollow">json-lib</a> and you're good to go.</p>
<p>I also found <a href="http://code.google.com/p/rocket-gwt/wiki/JsonSerialization" rel="nofollow">this project</a> (again, some marker interface is required).</p>