Difference between revisions of "Template:Tutorial common chapters"

From Documentation
 
(117 intermediate revisions by 8 users not shown)
Line 1: Line 1:
= Warm Up =
+
= Tutorial Objective =
 
+
Our target application is a simple car catalog application. This application has two functions:
In this chapter, we'll guide you how to prepare an environment to build a web application with ZK including setting IDE, installing ZK, and running an application in a server.
+
# Search cars.
 
+
#: Enter a keyword in the input field, click <b>Search</b> and search results will be displayed in the car list below.
 
+
# View details.
==Setup Eclipse ==
+
#: Click an item from the car list, the area below the car list will show the selected car's details including model, price, description, and preview.
We use Eclipse IDE 3.7 (indigo) for Java EE developer [[File:Eclipse-javaee.png]] to demonstrate the whole instructions. ([http://www.eclipse.org/downloads/packages/release/indigo/sr2 Download Eclipse], extract the downloaded zip file to a folder and execute eclipse.exe to open Eclipse.)
 
 
 
In order to edit ZK UI page in Eclipse, you should add "zul" (It's ZK UI page's file extension name) as a content type of XML format in following steps:
 
 
 
# Select '''Window \ Preferences''' to open Preferences window
 
# In left tree, select '''General \ Content Types''', on right hand side, expand '''Text''' node in "Content types" box, select '''XML'''
 
# Click '''Add''' button, type '''*.zul''', and click '''OK''' button
 
 
 
 
 
[[File:Tutorial-add-contenttype.png| 400px | center]]
 
 
 
 
 
 
 
After this setup, Eclipse will use XML editor to open it when you double click a zul file.
 
 
 
== Install ZK in a Web Project==
 
 
 
'''Download ZK'''
 
 
 
[http://www.zkoss.org/download/zk Download the ZK CE first] (file name looks like ''zk-bin-[version].zip'') and extract it to a folder.
 
 
 
 
 
'''Create a Project'''
 
 
 
To build a web application, you should create a "Dynamic Web Project" in Eclipse first:
 
# Select '''File \ New \ Dynamic Web Project'''
 
# Enter '''tutorial''' in Project name and keep every thing else default.
 
 
 
[[File:Tutorial-newproject.png | 400px | center]]
 
 
 
* You can leave "Target runtime" as "none".
 
* Notice that we set '''Dynamic web module version''' to 3.0 because we want to use Servlet 3.0 to eliminate application configuration.
 
 
 
 
 
'''Install ZK JAR'''
 
 
 
To use ZK in your project, you have to copy ZK JAR into your project's library folder.
 
 
 
Copy JAR files under following list to '''WebContent\WEB-INF\lib''':
 
* {YOUR_ZK_UNZIP_FOLDER}\dist\lib
 
* {YOUR_ZK_UNZIP_FOLDER}\dist\lib\ext
 
 
 
 
 
<div style="background-color:gold;border:solid;border-width:2px;border-radius:5px;padding-left:5px;padding-right:5px">
 
If you prefer to use an application server that supports '''older (< 3.0)''' Servlet specification or '''JDK 1.5''', you need more configuration on web.xml. Please refer to ZK Installation Guide. <ref> [[ZK Installation Guide/Quick Start/Create and Run Your First ZK Application Manually| ZK Installation Guide \ Create and Run Your First ZK Application Manually]] </ref>
 
</div>
 
 
 
 
 
'''Create a Simple Page '''
 
 
 
After installation, you can create a simple zul to verify the installation works or not. In Eclipse,
 
# Select '''File \ New \ File''' (or '''File \ New \ Other \ File''' ) to add a new file, '''hello.zul''', under '''WebContent'''.  
 
# Click '''Source''' tab to modify source.
 
#: [[File:Tutorial-xmleditor.png| 400px | center]]
 
# Copy and paste the following sample code into hello.zul and save it.
 
 
 
'''hello.zul'''
 
<source lang="xml">
 
<window title="My First ZK Application" border="normal">
 
Hello World!
 
</window>
 
</source>
 
 
 
 
 
 
 
 
 
After above steps, in '''Project Explorer''' view your project may look like:
 
 
 
[[File:Tutorial-project-structure.png |  center]]
 
 
 
If you don't find '''Project Explorer''' view, select menu '''Window \ Show View \ Project Explorer''' to open it.
 
 
 
== Run an Application ==
 
<!--
 
將 new server 及 run on the server 分成兩個步驟,後面的章節可隨時依照run on the server的步驟執行範例程式
 
-->
 
 
 
 
 
Before running a web application, we must create a server in Eclipse. Select '''Window \ Preferences''' to open Preferences window and select '''Server \ Runtime Environments''' from left tree. Click '''Add''' button to add a server runtime environment.
 
 
 
[[File:Tutorial-preference-server.png | 400px | center]]
 
 
 
 
 
Select '''Apache \ Tomcat v7.0 Server''' because it supports Servlet 3.0 and check '''Create a new local server'''. Then click '''Next''' button.
 
 
 
<div style="background-color:gold;border:solid;border-width:2px;border-radius:5px;padding-left:5px;padding-right:5px;">
 
If you use JDK 1.5, you could choose Tomcat v6.0. But you need more configuration on web.xml. Please refer to ZK Installation Guide in [[#References| References]] .
 
</div>
 
 
 
[[File:Tutorial-newserver.png | 400px | center]]
 
  
  
 +
[[File:tutorial-searchexample.png| 400px | center]]
  
If you had installed Tomcat 7 before, just provide your path. If you don't, proceed the following step:
 
# Click '''Download and Install''' button and choose a folder.
 
#: '''Notice that the installation path must not contain non-ASCII character.'''
 
# Accept the license agreement, wait for a minute.
 
#: '''Please wait Eclipse to complete the installation and do not interrupt it to ensure correct installation.'''
 
#: Eclipse will download and install Tomcat into the folder you specified. After installation is complete, the '''Finish''' button will become enabled.
 
# Click '''Finish''' button to complete it.
 
  
[[File:Tutorial-downloadinstall.png | 400px | center]]
+
= Start from Example Project =
  
 +
You can get [https://github.com/zkoss-demo/gettingStarted/ the source code of this article] and import it to your IDE without starting from scratch. Please follow the README to run the project.
  
After above steps, you can see a new entry in Server rumtime environments.
+
If you want to start a new project, please refer to [[ZK Installation Guide/Quick Start]].
  
[[File:Tutorial-server-complete.png | 400px | center]]
+
= Declaring Domain Class =
 
 
 
 
 
 
Right click on hello.zul, in context menu, select '''Run As \ Run on Server''' to run this zul on an application server.
 
 
 
[[File:Tutorial-runonserver.png | 400px | center]]
 
 
 
 
 
 
 
Choose an existing Tomcat 7. Yon can also check '''Always use this server when running this project''' option to avoid choosing a server each time you run the application in the future. Click '''Finish''' button and wait for the server starts running.
 
 
 
[[File:Tutorial-choose-server.png | 400px | center]]
 
 
 
 
 
 
 
After the server starts running successfully, Eclipse opens a browser automatically and connects to http://localhost:8080/hello.zul. If you can see the following image, then your project is ready to use ZK.
 
 
 
[[File:Tutorial-hello.png | 400px | center]]
 
 
 
 
 
 
 
You can follow above steps to run your application during this tutorial.
 
 
 
 
 
= Import and Run Example Application =
 
 
 
[http://zkbooks.googlecode.com/files/tutorial-20120803.zip Download example application project zip file first.]
 
 
 
In Eclipse, select '''File \ Import \ General \ Existing Projects into Workspace''', choose '''Select archive file''' to import example application zip file as a project to your Eclipse. Then follow the instructions in [[#Run an Application |Run an Application]] to run it.
 
 
 
= Example Application =
 
 
 
== Use Case==
 
Our target application is a simple car catalog application. This application has 2 functions:
 
# Search cars.
 
#: Enter a keyword in the input field, click search button and it displays the search result in the car list below.
 
# View details.
 
#: Click an item of the car list, then the area below the car list shows the selected car's details including name, price, description, and preview.
 
 
 
 
 
[[File:tutorial-searchexample.png| 400px | center]]
 
 
 
<!--
 
We describe domain objects here, because this section is independent from MVC and MVVM sections and domain part is unchanged for these 2 design patterns.
 
-->
 
 
 
== Domain Class ==
 
  
 
The following is the domain object that represents a car.  
 
The following is the domain object that represents a car.  
Line 166: Line 24:
 
public class Car {
 
public class Car {
 
private Integer id;
 
private Integer id;
private String name;
+
private String model;
private String company;
+
private String make;
 
private String preview;
 
private String preview;
 
private String description;
 
private String description;
Line 174: Line 32:
 
}
 
}
 
</source>
 
</source>
* Please refer to References section to see the complete code. <ref> [http://code.google.com/p/zkbooks/source/browse/trunk/tutorial/src/tutorial/Car.java Car.java] </ref>
 
 
  
Then we define a service class to perform the business logic (search cars) as follows:
+
We then define a service class to perform the business logic (search cars) shown below:
  
 
<source lang="java">
 
<source lang="java">
Line 189: Line 45:
 
 
 
/**
 
/**
* search cars according to keyword in name and company.
+
* search cars according to keyword in model and make.
 
* @param keyword for search
 
* @param keyword for search
* @return list of car that match the keyword
+
* @return list of car that matches the keyword
 
*/
 
*/
 
public List<Car> search(String keyword);
 
public List<Car> search(String keyword);
Line 197: Line 53:
 
</source>
 
</source>
  
We have a <tt>CarServeImpl</tt> that implements above interface. For simplicity it uses a static list object as the data model. You can replace it with connecting to a database in a real application. The implementation detail is not in this article's scope, please refer to References section.<ref> [http://code.google.com/p/zkbooks/source/browse/trunk/tutorial/src/tutorial/CarService.java CarService.java] [http://code.google.com/p/zkbooks/source/browse/trunk/tutorial/src/tutorial/CarServiceImpl.java CarServiceImpl.java] </ref>
+
In this example, we have defined a class, <code>CarServeImpl</code>, that implements the above interface. For simplicity, it uses a static list object as the data model. You can rewrite it so that it connects to a database in a real application. Its implementation details are not in the scope of this article, please refer to source code repository.
 +
 
 +
=Building User Interface =
 +
 
 +
UI is a good start to building an application as it helps you define the scope of your application. ZK provides hundreds of readily made UI components, so developers can rapidly build their desired user interface by combining and mix-matching these components without having to create a page from scratch.
 +
 
 +
In ZK, you can use [[ZUML Reference|ZK User Interface Markup Language (ZUML)]], an XML-formatted language, to describe UI. By ZK's convention, the files to describe the user interface with ZUML uses '''.zul''' as the name suffix. In zul files, one component is represented as an XML element (tag) and you can configure each component's style, behavior, and function by setting XML element's attributes. (check [[ZK Component Reference|ZK Component Reference]] for details)
 +
 
 +
In this example application, first of all, we want to use a <code>Window</code> with the specified title and normal border as our application's frame.
 +
 
 +
 
 +
As <code>Window</code> is the outermost component, it is called the ''root component''. <code>Window</code> is a commonly used container because it makes your web application look like a desktop application. Besides, it can also enclose other components. All other components inside <code>Window</code> are called its ''child components'' and should be put in <code><window></code>'s body.
 +
 
 +
'''Extracted from [https://github.com/zkoss-demo/gettingStarted/blob/master/src/main/webapp/search.zul search.zul]'''
 +
<syntaxhighlight lang="XML" line>
 +
<window title="Search" border="normal" width="600px">
 +
<!-- put child components inside a tag's body -->
 +
</window>
 +
</syntaxhighlight>
 +
 
 +
* Line 1: Specifying title bar text with <code>title</code> and make <code><window></code> display a normal border with <code>border</code> . For <code>width</code> attribute, use CSS like syntax such as <code>800px</code> or <code>60%</code>.
 +
 
 +
 
 +
Our example application's user interface is divided into 3 areas within the <code><window></code> (from top to bottom):
 +
 
 +
# search function
 +
# car list
 +
# car details.
 +
 
 +
[[File:Tutorial-ui-3areas.png | 400px |center]]
 +
 
 +
 
 +
== Search Area ==
 +
ZK components are like building blocks, you can combine and mix-match existing components to construct your desired UI. To allow users to search, we need a text to prompt users for input, a place to enter keywords, and a button for triggering the search. We can use the following ZK components to fulfill this requirement:
 +
 
 +
'''Extracted from [https://github.com/zkoss-demo/gettingStarted/blob/master/src/main/webapp/search.zul search.zul]'''
 +
<syntaxhighlight lang="XML" line>
 +
Keyword:
 +
<textbox id="keywordBox" />
 +
<button id="searchButton" label="Search" iconSclass="z-icon-search" style="margin: 0 0 5px 5px"/>
 +
</syntaxhighlight>
 +
 
 +
* Line 1~2: Specifying the <code>id</code> attribute for some components allows you to control them by referencing their ''id''.
 +
* Line 3: You can use built-in Font Awesome icon at <code>iconSclass</code>. Please refer to [[ZK_Component_Reference/Base_Components/LabelImageElement#IconSclass| LabelImageElement#IconSclass]] for details.
 +
 
 +
== Car List Area ==
 +
ZK provides several components to display a collection of data such as <code>listbox</code>, <code>grid</code>, and <code>tree</code>. In this example, we use a <code>listbox</code> to display a list of cars with 3 columns: Model, Make, and Price.  Here we use <code>listcell</code> with static label to demonstrate structure of a <code>listitem</code>. Later, we'll talk about how to create <code>listitem</code> dynamically with a collection of data.
 +
 
 +
'''Extracted from [https://github.com/zkoss-demo/gettingStarted/blob/master/src/main/webapp/search.zul search.zul]'''
 +
<syntaxhighlight lang="XML" line>
 +
<listbox id="carListbox" emptyMessage="No car found in the result" rows="5">
 +
    <listhead>
 +
        <listheader label="Model" />
 +
        <listheader label="Make" />
 +
        <listheader label="Price" width="20%"/>
 +
    </listhead>
 +
    <listitem>
 +
        <listcell label="car model"></listcell>
 +
        <listcell label="make"></listcell>
 +
        <listcell>$<label value="price" /></listcell>
 +
    </listitem>
 +
</listbox>
 +
</syntaxhighlight>
 +
* Line 1: <code>rows</code> determines the max visible row. <code>emptyMessage</code> is used to show a message when <code>listbox</code> contains no items.
 +
* Line 2: The <code>listbox</code>  is a container component, and you can add <code>listhead</code> to define a column.
 +
* Line 7: The <code>listitem</code> is used to display data, and the number of <code>listcell</code> in one <code>listitem</code> usually equals to the number of <code>listheader</code>.
 +
 
 +
== Car Details Area ==
 +
<code>hlayout</code> and <code>vlayout</code> are layout components which arrange their child components in horizontal and vertical order.
 +
 
 +
'''Extracted from [https://github.com/zkoss-demo/gettingStarted/blob/master/src/main/webapp/search.zul search.zul]'''
 +
<syntaxhighlight lang="XML" line>
 +
<hlayout style="margin-top:20px" width="100%">
 +
<image id="previewImage" width="250px" />
 +
<vlayout hflex="1">
 +
<label id="modelLabel" />
 +
<label id="makeLabel" />
 +
<label id="priceLabel" />
 +
<label id="descriptionLabel" />
 +
</vlayout>
 +
</hlayout>
 +
</syntaxhighlight>
 +
* Line 1: the <code>style</code> attribute allows you to customize component's style with CSS syntax.

Latest revision as of 06:16, 22 December 2023

Tutorial Objective

Our target application is a simple car catalog application. This application has two functions:

  1. Search cars.
    Enter a keyword in the input field, click Search and search results will be displayed in the car list below.
  2. View details.
    Click an item from the car list, the area below the car list will show the selected car's details including model, price, description, and preview.


Tutorial-searchexample.png


Start from Example Project

You can get the source code of this article and import it to your IDE without starting from scratch. Please follow the README to run the project.

If you want to start a new project, please refer to ZK Installation Guide/Quick Start.

Declaring Domain Class

The following is the domain object that represents a car.

public class Car {
	private Integer id;
	private String model;
	private String make;
	private String preview;
	private String description;
	private Integer price;
	//omit getter and setter for brevity
}

We then define a service class to perform the business logic (search cars) shown below:

public interface CarService {

	/**
	 * Retrieve all cars in the catalog.
	 * @return all cars
	 */
	public List<Car> findAll();
	
	/**
	 * search cars according to keyword in  model and make.
	 * @param keyword for search
	 * @return list of car that matches the keyword
	 */
	public List<Car> search(String keyword);
}

In this example, we have defined a class, CarServeImpl, that implements the above interface. For simplicity, it uses a static list object as the data model. You can rewrite it so that it connects to a database in a real application. Its implementation details are not in the scope of this article, please refer to source code repository.

Building User Interface

UI is a good start to building an application as it helps you define the scope of your application. ZK provides hundreds of readily made UI components, so developers can rapidly build their desired user interface by combining and mix-matching these components without having to create a page from scratch.

In ZK, you can use ZK User Interface Markup Language (ZUML), an XML-formatted language, to describe UI. By ZK's convention, the files to describe the user interface with ZUML uses .zul as the name suffix. In zul files, one component is represented as an XML element (tag) and you can configure each component's style, behavior, and function by setting XML element's attributes. (check ZK Component Reference for details)

In this example application, first of all, we want to use a Window with the specified title and normal border as our application's frame.


As Window is the outermost component, it is called the root component. Window is a commonly used container because it makes your web application look like a desktop application. Besides, it can also enclose other components. All other components inside Window are called its child components and should be put in <window>'s body.

Extracted from search.zul

1 	<window title="Search" border="normal" width="600px">
2 		<!-- put child components inside a tag's body -->
3 	</window>
  • Line 1: Specifying title bar text with title and make <window> display a normal border with border . For width attribute, use CSS like syntax such as 800px or 60%.


Our example application's user interface is divided into 3 areas within the <window> (from top to bottom):

  1. search function
  2. car list
  3. car details.
Tutorial-ui-3areas.png


Search Area

ZK components are like building blocks, you can combine and mix-match existing components to construct your desired UI. To allow users to search, we need a text to prompt users for input, a place to enter keywords, and a button for triggering the search. We can use the following ZK components to fulfill this requirement:

Extracted from search.zul

1 Keyword:
2 <textbox id="keywordBox" />
3 <button id="searchButton" label="Search" iconSclass="z-icon-search" style="margin: 0 0 5px 5px"/>
  • Line 1~2: Specifying the id attribute for some components allows you to control them by referencing their id.
  • Line 3: You can use built-in Font Awesome icon at iconSclass. Please refer to LabelImageElement#IconSclass for details.

Car List Area

ZK provides several components to display a collection of data such as listbox, grid, and tree. In this example, we use a listbox to display a list of cars with 3 columns: Model, Make, and Price. Here we use listcell with static label to demonstrate structure of a listitem. Later, we'll talk about how to create listitem dynamically with a collection of data.

Extracted from search.zul

 1 <listbox id="carListbox" emptyMessage="No car found in the result" rows="5">
 2     <listhead>
 3         <listheader label="Model" />
 4         <listheader label="Make" />
 5         <listheader label="Price" width="20%"/>
 6     </listhead>
 7     <listitem>
 8         <listcell label="car model"></listcell>
 9         <listcell label="make"></listcell>
10         <listcell>$<label value="price" /></listcell>
11     </listitem>
12 </listbox>
  • Line 1: rows determines the max visible row. emptyMessage is used to show a message when listbox contains no items.
  • Line 2: The listbox is a container component, and you can add listhead to define a column.
  • Line 7: The listitem is used to display data, and the number of listcell in one listitem usually equals to the number of listheader.

Car Details Area

hlayout and vlayout are layout components which arrange their child components in horizontal and vertical order.

Extracted from search.zul

1 	<hlayout style="margin-top:20px" width="100%">
2 		<image id="previewImage" width="250px" />
3 		<vlayout hflex="1">
4 			<label id="modelLabel" />
5 			<label id="makeLabel" />
6 			<label id="priceLabel" />
7 			<label id="descriptionLabel" />
8 		</vlayout>
9 	</hlayout>
  • Line 1: the style attribute allows you to customize component's style with CSS syntax.