Sunday, April 22, 2007

A sample XML serialization framework for Java

Simple is an XML serialization framework for Java. Here is the description in it's home page:
Its goal is to provide an XML framework that enables rapid development of XML configuration and communication systems. This framework aids the development of XML systems with minimal effort and reduced errors. The framework borrows ideas and concepts from existing XML tools such as C# XML serialization and other proprietary frameworks and combines those ideas resulting in a simple yet extremely powerful tool for using and manipulating XML. Below is a list of some of the capabilities of the framework.

Saturday, April 21, 2007

Useful Firefox Extensions

Gmail Space - A tool like ftp client, you can upload/download file with it.
Firefox Google Bookmarks - A tool for google bookmakrs
Deng Google Bookmarks - A tool for google bookmakrs

Thursday, April 19, 2007

Create new project jutility in google code

Yesterday, I created a new project jutility in google code. That is a utility package which provide some utility packages for java development. The url of this project is:
http://code.google.com/p/jutility/
I hope I can study some third part library, tools or develope experience from this open source project. For example,
Use Maven to manage project;
Use checkstyle to check code standard;
How to write unit test, etc.

Maybe it is useful to me.

Thursday, April 05, 2007

Bean comparator implements


Bean Comparator implement

Sometimes, we have this type requirement, sort a list<> with one or more properties of the Object. It likes we write sql statement:

select * from mytable order by column1, column2, column3 desc

For this requirement, we need provide a BeanSorter to sort the a collection of one type Object. So there is a simple implements.

This implementation has been move to http://code.google.com/p/jutility/