-
Get to know Apache Click (4 messages)
- Posted by: Frank Charles
- Posted on: January 28 2010 14:37 EST
Get introduced to Apache Click, a Java EE Web application framework that enables the creation of Web applications without using MVC patterns or JSP. This article provides examples of displaying a simple Web page and creating a Web form that submits data that is displayed on a different Web page.Threaded Messages (4)
- How is it different from Apache Wicket? by Franklin Antony on February 04 2010 05:40 EST
- Re: How is it different from Apache Wicket? by Silvo Cavalieri on February 04 2010 08:23 EST
- Re: How is it different from Apache Wicket? by James Watson on February 04 2010 10:43 EST
- Re: How is it different from Apache Wicket? by James Watson on February 04 2010 10:39 EST
- Re: How is it different from Apache Wicket? by Silvo Cavalieri on February 04 2010 08:23 EST
-
How is it different from Apache Wicket?[ Go to top ]
- Posted by: Franklin Antony
- Posted on: February 04 2010 05:40 EST
- in response to Frank Charles
Strange but Apache Click just looks like Apache Wicket. Some of the reasons are the fact that you make pages by extending from Page (in Click) and WebPage(in Wicket). However it looks strikingly similar. I really dont know which one came out first. However looking at the similarity I believe Click is also pretty simple and easy to use. Regards, Franklin -
Re: How is it different from Apache Wicket?[ Go to top ]
- Posted by: Silvo Cavalieri
- Posted on: February 04 2010 08:23 EST
- in response to Franklin Antony
Don't we have enough Java web frameworks already :) -
Re: How is it different from Apache Wicket?[ Go to top ]
- Posted by: James Watson
- Posted on: February 04 2010 10:43 EST
- in response to Silvo Cavalieri
Don't we have enough Java web frameworks already :)
Maybe. It's hard to get rid of bad frameworks to make room for the good (which Click appears to be) though. If we have to choose between a few crappy frameworks and lots of frameworks, I'd choose the latter. -
Re: How is it different from Apache Wicket?[ Go to top ]
- Posted by: James Watson
- Posted on: February 04 2010 10:39 EST
- in response to Franklin Antony
Strange but Apache Click just looks like Apache Wicket. Some of the reasons are the fact that you make pages by extending from Page (in Click) and WebPage(in Wicket). However it looks strikingly similar. I really dont know which one came out first. However looking at the similarity I believe Click is also pretty simple and easy to use.
There was another recent article about this. I believe that Eelco Hillenius stated that the main difference was that Click uses templates (Velocity by default) where Wicket does not. He or someone else stated that Click is easier for stateless pages and Wicket is easier for stateful pages. Because I prefer stateless pages for my purposes, I am currently looking at Click despite being very happy with Wicket.
Regards,
Franklin