IntelliJ open source
[Logo] JavaRanch » Big Moose Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Reply Bookmark it! Watch this topic JavaRanch » Forums » Application Frameworks » Other Application Frameworks
 
RSS feed
 
New topic
Author

How does Stripes compare with Wicket?

arulk pillai
Author
Ranch Hand

Joined: May 31, 2007
Messages: 2157

How does Stripes compare with Wicket in terms of ease of use, architectural principles, learning curve, maintainability, etc?

Author of Java/JEE Career Companions
400+ popular Java/JEE interview questions and answers | 100+ Java/JEE resume phrases, sample resumes, and career making tips


Frederic Daoud
author
Ranch Hand

Joined: May 22, 2008
Messages: 70

Originally posted by arulk pillai:
How does Stripes compare with Wicket in terms of ease of use, architectural principles, learning curve, maintainability, etc?


Stripes is an action-based framework, while Wicket is a component-based framework, which makes them fundamentally and architecturally different.

That said, they do have some similarities: very little XML configuration required, not full-stack but easy integration with other frameworks.

Stripes is probably easier to learn if you are already familiar with Struts or another action-based framework, while Wicket is closer to a Swing type of application.

In terms of maintainability, Stripes is excellent in my opinion because you do not need to constantly keep maintaining configuration files. How the code is connected to other parts is clearly indicated right there in the source, and that saves you loads of time when working on a large project with many developers.

Frederic Daoud
Author, Stripes...and Java Web Development is Fun Again
Stripes book blog
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Application Frameworks » Other Application Frameworks
 
RSS feed
 
New topic
replay challenge