Serializing business objects as JSON - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T22:50:19Z http://stackoverflow.com/feeds/question/712447 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/712447/serializing-business-objects-as-json 1 Serializing business objects as JSON blockhead 2009-04-03T03:24:00Z 2009-04-08T20:32:21Z <p>I'm trying to serialize my business objects into JSON for consumption by a Javascript application. The problem is is that I'm trying to keep my business objects "pure" in the sense they are not aware of data access or persistence. It seems to me that "diluting" my objects with a toJSON() function would go against this goal. On the other hand, using an external object to serialize my business objects would not work since I keep all my instance variables private.</p> <p>Am I approaching this totally the wrong way?</p> http://stackoverflow.com/questions/712447/serializing-business-objects-as-json/712450#712450 5 Answer by Brian Campbell for Serializing business objects as JSON Brian Campbell 2009-04-03T03:26:28Z 2009-04-03T03:26:28Z <p>If the instance variables are private, they should not appear in a serialization that is being sent to a JavaScript application. By definition, if you're serializing them and sending them to a separate application, they are public. So, an external object should have some way of accessing them, probably through some sort of getter methods.</p> http://stackoverflow.com/questions/712447/serializing-business-objects-as-json/712940#712940 0 Answer by Benry for Serializing business objects as JSON Benry 2009-04-03T07:54:48Z 2009-04-03T08:01:03Z <p>What purpose does searializing the data in JSON serve? Is it purely for reporting? If so, then Brian is correct, those variables should have getter methods.</p> <p>If the purpose of serialization is to transport the data to a JavaScript app where it can be manipulated and then returned to the originating application, then perhaps you would be best served by creating a related class that serves the purpose of serialization while still maintaining strong encapsulation.</p> <p>For example, in Java you could define an inner class. An inner class instance has direct access to all fields of the enclosing class instance without the need of getter methods. Or you could group with a package (or namespace) using the correct access modifiers to permit access by the serializer, but not by any other class.</p> <p>Or you could use reflection. Or hijack the toString method. (Or shine it all and create a toJson method.)</p> http://stackoverflow.com/questions/712447/serializing-business-objects-as-json/731690#731690 0 Answer by StaxMan for Serializing business objects as JSON StaxMan 2009-04-08T20:32:21Z 2009-04-08T20:32:21Z <p>Are you thinking of generating JSON from non-javascript code (like server-side Java)? The answer kind of depends on that: handling of JSON is quite different on Javascript and, say, Java. There's already an answer wrt javascript-side, which seems correct.</p> <p>If this is on Java, there are libraries that can help; for example (<a href="http://jackson.codehaus.org/Tutorial" rel="nofollow">Jackson</a>) can deserialize any bean, using regular getX/setX method introspection; plus additional (and optional) annotations.</p>