Create and Run Your First ZK Application Manually"

From Documentation
m
Line 35: Line 35:
 
===Create First ZUL file===
 
===Create First ZUL file===
 
Here is a simple zul file named '''hello.zul'''.
 
Here is a simple zul file named '''hello.zul'''.
<syntax lang="xml">
+
<source lang="xml">
 
  <window title="My First ZK Application" border="normal">
 
  <window title="My First ZK Application" border="normal">
 
  Hello World!
 
  Hello World!
 
  </window>
 
  </window>
</syntax>
+
</source>
  
 
===Pack your project===
 
===Pack your project===
Line 49: Line 49:
 
<pre>
 
<pre>
 
  myZK.war
 
  myZK.war
  hello.zul
+
  ¦ hello.zul
   
+
  ¦  
  └─WEB-INF
+
  +-WEB-INF
     web.xml
+
     ¦ web.xml
      
+
     ¦  
     └─lib
+
     +-lib
 
             *.jar
 
             *.jar
 
</pre>
 
</pre>

Revision as of 03:07, 22 September 2010


DocumentationZK Installation GuideQuick StartCreate and Run Your First ZK Application Manually
Create and Run Your First ZK Application Manually



Create your first application

Here shows you how to create a web application manually without IDE or other tools.

Download ZK Libraries

First, download the ZK libraries (Now is zk-bin-5.0.4.zip) from ZK Download and save it to a proper location.

Create Web application

ZK Web Applications use a standard directory structure defined in the Servlet specification.

When developing ZK web applications, you must follow this structure so that application can be deployed in any J2EE compliant web server.

All you need to do is create a web application directory with related files. J2EEWebApplication.jpg


  • Now i create one for example named myZK

Install Library Distribution

  1. Unzip zk-bin-5.0.4.zip
  2. Copy JAR files under following list to myZK/WEB-INF/lib
    • {YOUR_ZK_UNZIP_FOLDER}/dist/lib
    • {YOUR_ZK_UNZIP_FOLDER}/dist/lib/ext
    • {YOUR_ZK_UNZIP_FOLDER}/dist/lib/zkforge

Create Deployment Descriptor(Web.xml)

web.xml is called the web application deployment descriptor. This is a XML file that defines servlets, servlet mappings, listeners, filters, welcome files etc.

Deployment descriptor is a heart of any J2EE web application, so every web application must have a web.xml deployment descriptor directly under WEB-INF folder.


Create First ZUL file

Here is a simple zul file named hello.zul.

 <window title="My First ZK Application" border="normal">
 	Hello World!
 </window>

Pack your project

  1. Compress the myZK directory(e.g. myZK.zip)
  2. Rename myZK.zip to myZK.war
  3. Done!!

Confirm your ZK Web Archive (WAR) file

 myZK.war
 ¦  hello.zul
 ¦  
 +-WEB-INF
     ¦  web.xml
     ¦  
     +-lib
             *.jar

Version History

Last Update : 2010/09/22

Version Date Content
5.0.4 9/21/2010 Created



Last Update : 2010/09/22

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.