Project Structure -Wicket does not require any extra XML config like you have faces-config.xml for JSF. It also does not require JSPs.
Footprint and Dependencies - Thomas uses Jetty in his evaluation. Removing JSP support from Jetty for the Wicket version saves over 5MB. JSF has around 3MB of library dependencies compared to the 2MB for Wicket.
Page Complexity - In Wicket complexity moves into Java code. In JSF a large amount of complexity is in the JSP pages themselves.
Comments on Thomas' comparison consider if it is a fair one:
Can you fast forward to 2007? Look at JBoss Seam which makes JSF development much more pleasurable. Don’t get me wrong, I like Wicket and its philosophy but this isn’t a fair comparison to modern day JSF, especially with a trivial example as you’ve shown.Another reader writes however:
Excellent article. I’ve worked with both technologies, but seeing them side-by-side like this was very easy to follow and clear to read. While some of the vendor-specific technologies mentioned above might make JSF easier, I think your comparison was fair.
Community comments
Wow
by Jacob Hookom,
Re: Wow
by Eelco Hillenius,
Re: Wow
by Tim Fennell,
Re: Wow
by Jacob Hookom,
Summary: Bloke who likes to do everything by hand doesn't like to use tools
by Steve Jones,
Re: Summary: Bloke who likes to do everything by hand doesn't like to use t
by Peter Thomas,
Re: Summary: Bloke who likes to do everything by hand doesn't like to use t
by Eelco Hillenius,
Wow
by Jacob Hookom,
Your message is awaiting moderation. Thank you for participating in the discussion.
Footprint and Dependencies was a comparison point? Wow, I don't know if I can spare an extra MB of dependencies. The point of moving page complexity into java code as a pro for wicket is somewhat misleading, considering you can do the same in JSF by simply placing a "bind=#{foo.bar}" in any JSF tag/component and accomplish the same thing. And Wicket still faulters with reflection-- EL/property string-- same thing. I have to say though, the zero config works really well for small, 3 page apps.
Re: Wow
by Eelco Hillenius,
Your message is awaiting moderation. Thank you for participating in the discussion.
The example uses property models, which indeed are based on introspection (like EL). However, you can just implement IModel directly, and you can build your application as statically typed as you wish.
And 1000 'page' apps alike. You don't *need* configuration with Wicket like you would with JSF.
Re: Wow
by Tim Fennell,
Your message is awaiting moderation. Thank you for participating in the discussion.
> I have to say though, the zero config works really well for small, 3 page apps.
That's very unbecoming of you Jacob. It's almost (well, maybe not quite) like saying EJB2.0 scales better than 3.0 because it uses so much more configuration ;)
Re: Wow
by Jacob Hookom,
Your message is awaiting moderation. Thank you for participating in the discussion.
it was a comment on the scope of comparison, not on wicket itself
Summary: Bloke who likes to do everything by hand doesn't like to use tools
by Steve Jones,
Your message is awaiting moderation. Thank you for participating in the discussion.
A whole JSF article using "Netbeans" (Studio Creator 2 would have been a better bet) and the comparison is on size of server executable (got to save that disk space, its such a problem these days) and the JSF bit being a bit of a pig to work with.
THAT IS THE WHOLE POINT. This reads like someone comparing RMI with socket writing and complaining that RMI was a complete pig, while not using any of the RMI tools. Its very sad how we continue to have an industry with an obsession with hand cranking pages.
Re: Summary: Bloke who likes to do everything by hand doesn't like to use t
by Peter Thomas,
Your message is awaiting moderation. Thank you for participating in the discussion.
Size of the server executable and the number of dependencies are just the first in a series of side by side comparison points and the full blog post has more details, (including comments from JSF users acknowledging that the comparison is fair).
BTW Wicket has tools as well, there are plugins for Eclipse and *NetBeans*.
Re: Summary: Bloke who likes to do everything by hand doesn't like to use t
by Eelco Hillenius,
Your message is awaiting moderation. Thank you for participating in the discussion.
If it wasn't for these pesky programmers with their obsession for 3GL languages, everyone would have been using 4GL tools by now. ;)