hasan's blog (বল্গ)

work for fun!!!

Archive for November 12th, 2006

Forrest Gump!!

with 6 comments


Originally uploaded by hasan83bd.

Wow, i had never watched such before… it is simply awesome!!!!. samiha esha, thank you too much . the story line is really different.
“….run forrest run….”
checkout rest of the pictures

Written by nhm tanveer hossain khan

November 12, 2006 at 9:14 pm

Posted in Introduction, movie

SOJO – Simplify your Old Java Objects

with one comment

Very interesting library, JSON, CSV and many way you can serialize your java objects.  (also deserialize)

i have ran the following example:

DomainObject o = new DomainObject();
o.setDescription( “my description is too big” );
o.setEmail( “hasan–AT–somewherein.net” );
o.setId( new Integer(22));
o.setName( “nhm tanveer” );
o.setPhone( “+2323blah blah” );

Serializer sr = new JsonSerializer();
System.out.println( sr.serialize( o ) );

from the SOJO document:

The intention for this project is a Java framework, that convert JavaBeans in a simplified representation. So it is easy and uniformly to handle and control the access to JavaBeans properties.

The main goal from this frameworks is, that SOJO can convert complex Java-Object graphs (with cycle detection) to a desired structure. The framework provide a “pluggable” basis to integrate different kind of conversions (also your own implementations). With this infrastructure can solve problems, where POJOs are not supported or are not the best decision.

SOJO Official Site

Written by nhm tanveer hossain khan

November 12, 2006 at 2:14 am

Posted in Introduction, Java, News, example