Get Spreadsheet Running Quickly in JSP"

From Documentation
Line 9: Line 9:
  
 
= Download ZSS JSP Example Project =  
 
= Download ZSS JSP Example Project =  
If you want to run ZK spreadsheet JSP demo in your local site, just [https://github.com/zkoss/zkspreadsheet/releases/download/3.0.0/zssjspdemo-3.0.0.zip download the example maven project file with source codes] and run it in your environment.
+
If you want to run ZK spreadsheet JSP demo in your local site, just [https://github.com/zkoss/zssjspdemo/archive/v1.0.0.zip download the example maven project file with source codes] and run it in your environment.
  
 
= Create and Run a JSP Project =
 
= Create and Run a JSP Project =

Revision as of 01:05, 2 December 2014


Get Spreadsheet Running Quickly in JSP





Available in ZK Spreadsheet EE only

Download ZSS JSP Example Project

If you want to run ZK spreadsheet JSP demo in your local site, just download the example maven project file with source codes and run it in your environment.

Create and Run a JSP Project

The following sections tell you how to prepare an environment for working with Spreadsheet in JSP.

Prerequisites

Before developing a web application with Spreadsheet, you should prepare the following softwares:

  • Install JDK 1.6 or above
  • Install an application server
    • You can install any Java web server you like. If you don't have one, Tomcat is a good choice.
  • Install a development tool.
    • In this book, we will use Eclipse as the default IDE to explain related setup.

Prepare a Project

Steps to Prepare an Eclipse Dynamic Web Project

If you have to create a project by your own, you can follow the steps below:

  1. Create a dynamic web project
  2. Install Spreadsheet library
    1. Download ZK Spreadsheet component (binary). Choose "Free Evaluation Downloads" from product page or licensed EE from premium download.
    2. Extract the zip and copy those JAR files under /dist/lib and /dist/lib/ext to /WEB-INF/lib under your web project's root folder.
      Make sure zssjsp.jar existed under /WEB-INF/lib.
  3. Set up web.xml
    Please refer to Sample of web.xml.

Steps to Prepare a Maven Project

1. Create a Maven project.
You should set packaging to war.
2. Setup Maven dependency.
First, you should setup zk maven repository to use "EE Evaluation" or "EE". Notice that different editions are available at different repositories, and EE requires authentication.
Because this feature is only available in EE, you should add following dependencies:
<dependency>
	<groupId>org.zkoss.zss</groupId>
	<artifactId>zssex</artifactId>
	<version>${zss.version}</version>
</dependency>
<dependency>
    <groupId>org.zkoss.zss</groupId>
    <artifactId>zssjsp</artifactId>
    <version>${zss.version}</version>
</dependency>
  • You can browser ZK maven repository to know available zss.version

You can reference the pom.xml in our example project to verify your own pom.xml.

3. Set up web.xml.
Please refer to Sample of web.xml.

Trouble Shooting

If you have problem switching from the evaluation repository to the licensed one, please check here.

Verify Your Project

After completing above steps, preparation for working with Spreadsheet and JSP is done. You can use a simple page to verify your preparation. Steps are as follows:

  1. Create a simple Excel file or use the sample file in our example project. Put the file under your web application's root folder.
  2. Create index.jsp with content below:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@taglib prefix="zssjsp" uri="http://www.zkoss.org/jsp/zss"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
	"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
	<title>My First ZK Spreadsheet JSP application</title>
	<zssjsp:head/>
</head>
<body>
<div width="100%" style="height: 100%;">
	<zssjsp:spreadsheet
	id="myzss" src="/WEB-INF/hellozss.xlsx" width="100%"
	height="100%" maxVisibleRows="200" maxVisibleColumns="40" showSheetbar="true"/>
</div>
</body>
</html>
  • Line 3: Declare a taglib before using Spreadsheet JSP tag is necessary.
  • Line 9: The head tag generates ZK required JS and CSS.
  • Line 13: Use spreadsheet JSP tag with prefix you specified in taglib.


Now, deploy the project to your application server and visit index.jsp to see if you can see the Spreadsheet.



All source code listed in this book is at Github.


Last Update : 2014/12/02

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