Hi,

Wicket comes with a package ( org.apache.wicket.ajax.json ) containing some utility class to work with JSON. However I couldn't find a way to deserialize an object from a JSON value. I need something that corresponds to the method fromJson of Gson library:

MyClass myClass = gson.fromJson(json, MyClass.class);

Is there anything similar in Wicket or should I relay on an external library?

Reply via email to