What are the design patterns which used in Struts 1.x framework?
|
|
|
|
|
|
|
MVC is the main pattern behind struts development. JSPs are used for view and then there is controller (Front controller Pattern) and then there is model. The Actions are based on command pattern. Struts uses ValueObject pattern also as we normally encapsulate all the data in an object and then pass it to JSPs. There are many more patterns in struts. |
|||
|
|
|
|
||
|
|
