views:

2072

answers:

2

What are the design patterns which used in Struts 1.x framework?

+1  A: 

Are you looking for this book?

http://java.sun.com/blueprints/patterns/

This is all of them.

S.Lott
A: 

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.

Bhushan
Could you please tell us what are they and where are they used ?
Thomman