From: B.Java on
Hi,

I want to develop a my own framework or say improve code for my web
project.
I have some idea in mind please give ur view on it.

we have a project in which we are using jsp/servlet/ejb.

Assume user click or submit a form from jsp page then our
control(request) goes to a servlet say Action, here based on some
actionValue which coming from jsp page, we decided to call it a
specific engine, again on this engine based on that actionValue we
call business class.Now in business class we are manageing all the
codes regading database(saving, updating etc.)

Please tell me ur review on the above and how can i improve my code.


Thank you
From: Phlip on
B.Java wrote:

> I want to develop a my own framework or say improve code for my web
> project.
> I have some idea in mind please give ur view on it.
>
> we have a project in which we are using jsp/servlet/ejb.
>
> Assume user click or submit a form from jsp page then our
> control(request) goes to a servlet say Action, here based on some
> actionValue which coming from jsp page, we decided to call it a
> specific engine, again on this engine based on that actionValue we
> call business class.Now in business class we are manageing all the
> codes regading database(saving, updating etc.)
>
> Please tell me ur review on the above and how can i improve my code.

I'm not sure why others didn't answer, but you need to look up "Model View
Controller", then either use it or phrase your question in its terms. MVC is
essentially the "root principle" of all GUI design.

--
Phlip