ZK (framework)

Summary

ZK is an open-source Ajax Web application framework, written in Java,[3][4][5] that enables creation of graphical user interfaces for Web applications with little required programming knowledge.

Developer(s)zkoss.org
Stable release
9.6.0 / 10 August 2021; 2 years ago (2021-08-10)[1]
Repository
  • github.com/zkoss/zk Edit this at Wikidata
Operating systemCross-platform (JVM)
TypeAjax Web Framework
LicenseLGPL / ZOL / Commercial[2]
Websitezkoss.org

The core of ZK consists of an Ajax-based event-driven mechanism, over 123 XUL and 83 XHTML-based components,[6] and a mark-up language for designing user interfaces. Programmers design their application pages in feature-rich XUL/XHTML components, and manipulate them upon events triggered by end user's activity. It is similar to the programming model found in desktop GUI-based applications.

ZK uses a server-centric approach in which the content synchronization of components and the event pipe-lining between clients and servers are automatically done by the engine, and Ajax plumbing codes are completely transparent to web application developers. Therefore, the end users get the similar engaged interactivity and responsiveness as a desktop application, while programmers' development retains a similar simplicity to that of desktop applications.

ZK does not use the standard web request-response mechanism and does not send form fields to the server by making a GET request with query parameters or a POST request. Instead, AJAX requests are sent to the server to update the internal state of each screen widget. At the browser, ZK only downloads a JSON description of the web page and uses a client renderer to turn that into a UI. It's quite efficient and under closer inspection, does not download everything at once. A look at the traffic between client and the server reveals several requests going back and forth between client and browser until the page rendering eventually completes.

The optional client-side customization allows the developer to leverage the client-side resources with the so-called server+client fusion, for customization and to reduce the Ajax traffic.

In addition to component-based programming in a manner similar to Swing, ZK supports a mark-up language for rich user interface definition called ZUML.

  • ZUML is designed for non-programmer developers to design user interfaces intuitively.
  • ZUML allows developers to meld different markup languages, such as Mozilla XUL language and XHTML, seamlessly into the same page.
  • ZUML allows developers to embed scripts in pure Java language (interpreted by BeanShell) and use EL expressions to manipulate the components and access data.

Features edit

 
webui interface of iDempiere under ZK6
  • Simply Java. ZK is renowned for its "Ajax without JavaScript" approach, enabling developers to build rich web applications transparently without any knowledge of Ajax and JavaScript.
  • Responsive design themes along with Bootstrap support
  • HTML 5 and CSS 3 support
  • Over 100 Ajax components offer UI designers a variety of feature rich components to meet the demands of enterprise Ajax applications.
  • ZUML makes the design of rich user interfaces similar to authoring HTML pages. ZUML is a variant of XUL inheriting all features available to XML, and separates the UI definition from the run-time logic.
  • Event-driven component-based model (similar to desktop programming models) supporting multiple event driven GUI design patterns.[7]
  • Support for Model-View-Controller (MVC),[8] Model-View-Presenter[9] and Model-View-ViewModel (MVVM)[10] design patterns
  • Databinding capability via in-ZUML-page annotations that automates CRUD and state synchronization between UI view and the data and POJO.
  • Application components, such as spreadsheet, pivot table, and calendar.
  • Embedding scripting support with Java (Beanshell[11]). This is an important benefit as you can use a unified programming language for both user interface and backend programming. Optional support for other serverside Java scripting in other languages such as JavaScript (Rhino[12]), Ruby (JRuby[13]), Python (Jython[14]) and Groovy.[15]
  • Support for integrating with existing web frameworks via a JSP custom tag library, JSF support, Portlet, and a Servlet Filter. Has support for Spring and Hibernate.
  • Extensible in that programmers can create new custom UI controls. Groups of controls can be re-used as a macro component.
  • Extensive charting with ZK Charts

Differences from XUL edit

  • ZK is a server side framework which emits HTML and thus does not depend on client side presence of Gecko making it portable to any browser. ZK takes ZUML (xul and xhtml) serverside pages as input and outputs dhtml for the browser.
  • ZK processes user interface logic on the server in Java. This increases choice in the scripting engines and application libraries that can be used to create logic. Presentation effects can be delegated to the browser using the Client-side Actions feature to reduce server load for dhtml effects. Running the application logic on the server in a single application container reduces the amount of cross browser and browser version testing when compared to extensively programming the DOM at the browser.
  • While ZK and XUL have an overlapping subset of components, ZK has its own unique component sets. The component library can be extended with custom components. Macro components can be defined that are composites of components.
  • ZK provides serverside databinding annotations to declaratively bind UI components to serverside data.
  • Look and Feel differences.

System requirements edit

  • JRE version 1.5 or later
  • A Web server supporting Servlet 2.3 or later

Prerequisites of programming skills edit

Required edit

  • Basic knowledge of Java or a Java scripting engine language such as Groovy, Rhino (Java JavaScript), JRuby (Java Ruby) or Jython (Java Python)
  • Basic knowledge of HTML and XUL

Optional edit

ZUML edit

ZUML (ZK User Interface Markup Language) is a markup language for rich user interfaces definition.

  • ZUML is designed for non-programmers to design user interfaces efficiently with the ZUML markup
  • ZUML allows developer to meld different markup languages, such as Mozilla XUL language and XHTML, seamlessly into the same page.
  • ZUML allows developers to embed script in pure Java language (interpreted by BeanShell) and use EL expressions to manipulate the components and access data.
  • ZUML is supported by ZK.
  • Official Documentation : ZUML Reference

Client-side technologies edit

ZK is a server-centric framework. Technically you don't need to know about the implementation at the client side. It is how ZK Mobile running on Java Mobile VM is done.

Since ZK 5.0, the so-called Server+client Fusion[16] architecture is introduced. Developers are allowed to access the client-side widgets directly if they want to. ZK Client Engine is based on jQuery.[17] Technically you can use jQuery-compliant libraries and widgets.

ZK Add-Ons edit

ZK Charts
A charting component with APIs for displaying and controlling Charts from server-side

ZK Pivottable
An Ajax data summarization component

ZK Spreadsheet
An online Web spreadsheet component. Replaced by Keikai[18]

See also edit

References edit

  1. ^ "ZK 9.6.0 release notes".
  2. ^ ZK 3 and older versions are licensed under GPL.
  3. ^ Chen, Henri (2008). ZK - Ajax without JavaScript. Apress. p. 125. ISBN 978-1-59059-901-3.
  4. ^ Staeuble, Markus (2008). ZK Developer's Guide. Packt Publishing. p. 184. ISBN 978-1-84719-200-4.
  5. ^ Van der Schyff, Andre (2009-03-31). "A look at MVC frameworks". ITWeb. Archived from the original on 2009-08-22. Retrieved 2009-04-14. MVC frameworks provide limited functionality when compared to ZK, Echo and other Java Web frameworks.
  6. ^ "ZK Explorer". Zkoss.org. Retrieved 2010-08-25.
  7. ^ Massey, Simon. "Implementing event-driven GUI patterns using the ZK Java AJAX framework". www.ibm.com/. IBM. Retrieved 5 July 2014.
  8. ^ "ZK - ZK Developer's Reference/MVC - Documentation". Books.zkoss.org. 2014-01-27. Retrieved 2014-03-02.
  9. ^ "ZK - Small Talks/2011/November/Hello ZK MVVM - Documentation". Books.zkoss.org. Retrieved 2014-03-02.
  10. ^ "ZK - Small Talks/2011/November/MVVM in ZK 6 - Design your first MVVM page - Documentation". Books.zkoss.org. Retrieved 2014-03-02.
  11. ^ "Lightweight Scripting for Java". BeanShell. Retrieved 2014-03-02.
  12. ^ "Rhino | MDN". Mozilla.org. 2012-08-09. Retrieved 2014-03-02.
  13. ^ "Home — JRuby.org". Jruby.codehaus.org. 2014-02-25. Archived from the original on August 30, 2009. Retrieved 2014-03-02.
  14. ^ "Jython : Homepage". Jython.org. Archived from the original on 2009-05-16. Retrieved 2014-03-02.
  15. ^ "Groovy - Home". Groovy.codehaus.org. 2014-02-18. Archived from the original on March 2, 2014. Retrieved 2014-03-02.
  16. ^ Clare, Timothy (2010-02-09). "Server+client Fusion: An Architectural Proposal". Dr. Dobb's. A good framework architecture is flexible empowering developers and architects to implement their applications in a smart and elegant manner.
  17. ^ Mahajan, Sachin (2010-10-19). "Enhance Ajax development with a fusion of jQuery, ZK, and Java code". IBM developerWorks. The marriage between server-side Java code and jQuery can help you tackle the challenges in enterprise Ajax application development.
  18. ^ https://www.zkoss.org/product/keikai - ZK Spreadsheet is now Keikai

External links edit

Official website