Is frameworks really necessary for this problem?

Posted by The Elite Gentleman on Stack Overflow See other posts from Stack Overflow or by The Elite Gentleman
Published on 2010-01-28T12:10:39Z Indexed on 2010/03/13 1:17 UTC
Read the original article Hit count: 288

Filed under:
|
|
|
|

Hi Guys

I'm creating an online music store application (in Java) for signed and unsigned artist for my client.

I'm currently using Struts 1.3.10 (I was recommended Spring but Spring setup is sort of similar to Struts) for my Web application.

My Database is currently a MySQL 5 (or higher) and I'm using a DAO pattern to talk to it. There are limitations to using Struts and DAO's (e.g. Multiple File upload in Struts is not implemented the same way as multiple String parameters, and for DAO's, there lacks a Publish-Subscribe feature).

Is what I'm doing the best way forward or should I go straight Hibernate (or similar) and move out of Struts? What are the performance implications or technical issues that you've experienced with the same setup I have?

The client doesn't care how I do it as long as it is done.

© Stack Overflow or respective owner

Related posts about struts

Related posts about dao