Hi,
After going thru
Struts framework, my understanding about that is, each action is associated to a Class file. In this case, is it good to apply Struts framework for a B2C application having hundreds of unique actions. I think, the controller in this can be designed such that it groups logically the actions triggered by the user and assigns each specific action to a separate method.
In struts, each user action is mapped to a separate action class.
Can anybody pls explain