Is OpenSwing a good framework for developing professional desktop application?

link|improve this question

This is a bad question. Please provide some context, different frameworks are good in different situations. – Tom Medley Sep 27 '10 at 9:22
Well we have to finish a financial desktop application within five months. We currently have another application in C# which is about 70% similar to the new project we have to deliver in this short period. – Rabin Sep 27 '10 at 9:30
feedback

1 Answer

up vote 1 down vote accepted

I was recently using the OpenSwing Framework. I can say only the best for the functionalities which are provided with the framework. It is a multitier concept with excelent data binding possibilities. My App uses a small Derby DB in background and I’m managing it with hibernate.

I’m sure, you will be able to advance very fast and provide a working prototype very quick. I would advice you to read the available doc first and to run the provided examples (http://oswing.sourceforge.net/).

However, it has another side which you should be aware of and you will probably notice by yourself if you run the examples. The GridFrame, GridFrameControler, DetailFrame, DetailFrameControler etc classes are not really generic. There are a lot of dependencies bult in and you will have to customize them again and again for every single implementation (can be seen in the demos).

I had another approach, I invested some time in building my own classes which are generic and using the unchanged OpenSwing classes in the background first. Now I’m only setting the properties file where all details are pre-defined. The rest is generic and I don’t have to re-code again and again for every single frame. I hope this will help.

Regards

link|improve this answer
Thanks for the advice. Will try. – Rabin Feb 20 '11 at 5:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.