vote up 0 vote down star

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

flag

56% accept rate

2 Answers

vote up 0 vote down

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.

link|flag
Could you please tell us what are they and where are they used ? – Thomman Yacob Apr 16 at 10:49
vote up 1 vote down

Are you looking for this book?

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

This is all of them.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.