new JSONSerializer().exclude("*.class").serialize( obj );
Pretty simple huh? You can even use wildcards more than once so expressions like:
new JSONSerializer().exclude("foo.*.bar.*").prettyPrint( obj );
Using a plain star ('*') will cause a deep serialization. In previous releases you used the deepSerialize() method to get a deep serialization. You can still use that method. The big thing that changed between releases is the evaluation order of includes and excludes. In prior releases includes were always processed before excludes. So that meant if you did the following:
new JSONSerializer().exclude("*.class").include("my.hobbies").serialize( obj );
In previous release "my.hobbies" would always be processed before *.class, but now they are processed in the order in which you register them. So in 1.5 the order would be to evaluate each field against the "*.class" exclude then evaluate it against "my.hobbies". This enables you do things like:
new JSONSerializer().exclude("foo.phoneNumbers").include("*").prettyPrint( obj );
You might notice a new method I'm using...prettyPrint(). Pretty print is fairly straight forward it formats your JSON output in a pretty to read format. Very nice for debugging.
The other big feature is Transformers. Transformers allow you to register classes that participate in serializing fields. It's best understood as described by a use case. Say we have an object that represents an email, and we want to send it to the browser over JSON. But, emails can have illegal characters for HTML like < or > in fields like the to, from, or cc portions. Before we would have to create a separate method that would HTML encode those characters, and exclude the method that returned those values in plain text. Now we can register a transformer for those fields on the fly. Here's how we can solve this problem:
new JSONSerializer().transform( new HTMLEncoder(), "to", "from", "cc" ).prettyPrint( email );
So the transform() method allows us to register a Transformer called HTMLEncoder. The "to", "from", and "cc" are fields within the email object that we want to run this Transformer on. We can register this Transformer with one or more fields to make it easy on us. The transform() method supports dot notation, just like include and exclude, but doesn't support wildcards.
Transformers can do all sorts of things. Say transform Markdown into HTML from your objects, escape HTML tags and script tags to protect your application, or translating dates into non-numeral format (2007-08-12) or (1/1/2008). Flexjson ships with a HTMLEncoder that you can use out of the box. In the future I hope to add more, especially for security concerns.
This release also has several bug fixes, and performance enhancements. There are some very exciting features in this release. Grab it and see how you like it.
13 comments:
Does it work w/ HashMaps both ways?
It will serialize Hashmaps into JSON no problem, but what do you mean by both ways?
Hey, what is your updated e-mail address? The gmail one mentionned on flexjson does not seem to work.
My email hasn't changed. It's the same one.
Hi,
I was using json-lib for a project im starting with ext2.
But i found this a couple of hours ago and i got it working in my project in just some minutes. Much more simple than json-lib, and the feature "only send what you need" is very good.
Thx for sharing
Thanks Vincente! Glad you found it useful.
We showed (http://jsonmarshaller.sourceforge.net/2007_11_19_15_02/index.html) that the implementation of wildcards in flexjson is about 200 times slower than deep serialization. I wouldn't recommend this feature for production code.
Hi,
May i ask just 1 question about your flexjson?
The dates are sent in long value, but i dont know how to convert to date in ext. Is there anyway to specify converters? (i'll try to get it working in ext anyway).
Thx chubbard
The format of Dates by default is to send as a plain number. There are several reasons for this. First client side formats are specific to the locale settings which flexjson doesn't have by default. Second doing ajax like things (especially with libraries like ext) it's more useful to convert those Dates to Javascript Date objects so you can do client side sorting and comparisons using those numbers. That's not possible with strings.
If you'd like to convert those dates to strings you can install a DateTransformer for either the Date.class or the object path for portions you'd like to convert. Flexjson does ship with a DateTransformer so it's really a single method call to convert them. Although I just checked and the online javadoc looks like it's a little old. The javadoc that ships with 1.6 should be up to date.
Something like:
new JSONSerializer().transform( Date.class, new SimpleDateTransformer( "yyyy/MM/dd").serialize( new Date() );
Hi, thanks for this little gem.
However I don't find the facility of transforming fields by class, e.g,
JSONSerializer().transform( Date.class, new DateTransformer( "yyyy/MM/dd").serialize( new Date() );
There is no such method in the JSONSerializer. I need this deperately...
Hi, great project. Are you still working on it?
Jeremy,
Yes it's still being worked on, but I've been occupied with some changes in my life that doesn't allow me much time to dedicate to it. I just sketched out a preliminary Deserializer which is something people have been asking for. I'll probably make a quick release to fix the hibernate bug here in a few days. Then hopefully soon release 2.0
Thanks for being patient.
Charlie
I have a problem with the names of the properties. I want to create a POJO that represent this json: {"font-size": 12}. But in java, the "-" character is forbidden in property names. How can I workaround this problem? Thanks.
Post a Comment