Overview"
From Documentation
m |
|||
Line 13: | Line 13: | ||
# Implement the action as a Java class to handle the request | # Implement the action as a Java class to handle the request | ||
# Implement the view in any technology, such as ZK and JSP, you prefer to show up the result | # Implement the view in any technology, such as ZK and JSP, you prefer to show up the result | ||
+ | |||
+ | '''Related Links:''' | ||
+ | * [http://code.google.com/p/zest/ ZEST Home] | ||
+ | * [http://code.google.com/p/zest/downloads/list Downloads] | ||
=Version History= | =Version History= |
Revision as of 09:31, 14 March 2011
ZEST is a lightweight Web framework that enables MVC and REST architectural pattern.
ZEST is installed as a HTTP filter to intercept each HTTP request. Once a HTTP request is received, ZEST looks for the matched action, instantiate and invoke it, and then forward to the view based on the result as illustrated below.
The use of ZEST is straightforward:
- Configure WEB-INF/web.xml to specify ZEST as a filter
- Configure WEB-INF/zest.xml to specify the definitions of actions
- Implement the action as a Java class to handle the request
- Implement the view in any technology, such as ZK and JSP, you prefer to show up the result
Related Links:
Version History
Version | Date | Content |
---|---|---|