Jump to content

Apache Click

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Sabob (talk | contribs) at 09:48, 12 December 2008 (Created page with '{{ Infobox_Software | name = Apache Click | logo = 43px|Click Framework logo | screenshot ...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
Apache Click
Developer(s)Apache Software Foundation
Stable release
1.5 / November 2, 2008 (2008-11-02)
Repository
Written inJava
Operating systemCross-platform
TypeWeb_application_framework
LicenseApache License 2.0
Websitehttp://incubator.apache.org/click/

Apache Click is a modern page and component oriented web application framework for the Java language and is built on top of the Java Servlet API.

It is a free and open-source project distributed under the Apache license and runs on any JDK >= 1.4.

Click is currently undergoing incubation at Apache Software Foundation.

Overview

The main design goals are simplicity, ease of use, performance and scalability. To achieve these goals Click leverages an intuitive page and component oriented design.

Pages and components provide good encapsulation of web concepts and enables rapid application development.

Click takes a pragmatic approach and expose few abstractions to learn and understand. The Java Servlet API is fully exposed to the developer which eases the upgrade path from an action based framework to a component based one.

Pages and components are developed in Java while templates can be written in Velocity, FreeMarker or JSP. Components know how to draw themselves alleviating developers from maintaining redundant markup.

A major difference between Click and other component oriented web frameworks is that Click is stateless by design, although stateful pages are supported.

Competing frameworks

There are a number of other component oriented frameworks available for Java such as JSF, Tapestry and Apache Wicket.

Some developers prefer the more traditional action-based web frameworks including Apache Struts, Spring MVC, and Stripes.

See also

Documentation

Blogs