Is there an easy way to return data to web service clients in JSON using java? I'm fine with servlets, spring, etc.
|
7
|
|
|
|
|
|
To me, the best Java <-> JSON parser is XStream (yes, I'm really talking about json, not about xml). XStream already deals with circular dependencies and has a simple and powerful api where you could write yours drivers, converters and so on. Kind Regards |
||
|
|
|
We have been using Flexjson for converting Java objects to JSON and have found it very easy to use. http://flexjson.sourceforge.net Here are some examples:
It has some cool features such as deepSerialize to send the entire graph and it doesn't break with bi directional relationships.
Formatting dates on the server side is often handy too
|
||
|
|
|
Yup! Check out json-lib Here is a simplified code snippet from my own code that send a set of my domain objects:
|
||||
|
|
|
It might be worth looking into Jersey. Jersey makes it easy to expose restful web services as xml and/or JSON. An example... start with a simple class
Then create a Resource
and expose it. There are many ways to do this, such as by using Jersey's ServletContainer. (web.xml)
Thats all you need to do... pop open your browser and browse to http://localhost/blah/1. By default you will see XML output. If you are using FireFox, install TamperData and change your Obviously there is much more to it, but Jersey makes all that stuff quite easy. Good luck! |
||
|
|
|
http://www.json.org/java/index.html has what you need. |
||
|
|
|
|
For RESTful web services in Java, also check out the Restlet API which provides a very powerful and flexible abstraction for REST web services (both server and client, in a container or standalone), and also integrates nicely with Spring and JSON. |
||
|
|
|
|
As already mentioned, Jersey (JAX-RS impl) is the framework to use; but for basic mapping of Java objects to/from JSON, Tutorial is good. Unlike many alternatives, it does not use strange XML-compatibility conventions but reads and writes clean JSON that directly maps to and from objects. It also has no problems with null (there is difference between missing entry and one having null), empty Lists or Strings (both are distinct from nulls). Jackson works nicely with Jersey as well, either using JAX-RS provider jar, or even just manually. Similarly it's trivially easy to use with plain old servlets; just get input/output stream, call ObjectMapper.readValue() and .writeValue(), and that's about it. |
||
|
|
