Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EDT:Tutorial: RUI With Database Introduction"

Line 108: Line 108:
 
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 1|Lesson 1: Plan the application]] '''<br>
 
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 1|Lesson 1: Plan the application]] '''<br>
 
Design your application on paper before you begin coding.
 
Design your application on paper before you begin coding.
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 2|Lesson 2: Connect to a new Derby database]] '''<br>
+
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 2|Lesson 2: Set up the projects]] '''<br>
 +
Create three EGL projects, one for your RUI client code, one for services code, and one for code shared by the other two projects.
 +
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 3|Lesson 3: Connect to a new Derby database]] '''<br>
 
Use the Derby open source database manager to handle the
 
Use the Derby open source database manager to handle the
 
data store for the application.
 
data store for the application.
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 3|Lesson 3: Set up the projects and use the EGL SQL retrieve feature]] '''<br>
 
Before you write your logic, create two EGL projects, as
 
well as a Record part that is based on the database table.
 
 
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 4|Lesson 4: Create the Rich UI handler]] '''<br>
 
<li>''' [[EDT:Tutorial: RUI With DataBase Lesson 4|Lesson 4: Create the Rich UI handler]] '''<br>
 
Start to build the handler by using EGL wizards and then
 
Start to build the handler by using EGL wizards and then

Revision as of 10:16, 27 February 2012

Access a database with EGL Rich UI


< Previous | Next >

Introduction

The following image shows the main page of the application that you will create:The finished page contains two widgets, one a list of all records, the second showing all fields for a selected record.


The web page displays all rows in a database table and lets the user update each one. In addition, the user can add and delete rows.

The technology for developing the web page with EGL Rich UI involves several steps:

  1. You write the code.
  2. You generate the code and deploy it to another project in the workbench. At that point, the code that is destined for a browser is an HTML and JavaScript format; but other code is in Java format, as described later.
  3. You deploy all the code to a server such as Apache Tomcat.
  4. The server transmits the HTML and JavaScript code to the user's browser.
  5. The application both presents data to the user and accesses services that run remotely on a server.


A main benefit of EGL Rich UI is that users can interact with a responsive, local-running web application even as services do background work such as accessing a database.

In this tutorial, the Rich UI application accesses a service that you write and deploy along with the Rich UI application. This kind of service is called an EGL dedicated service. In general, you can use a dedicated service to do tasks that other EGL-generated Java services can do, such as accessing a database or file system. However, the dedicated service is not available to other code unless you redeploy it as an EGL-generated web service.

The benefit of a dedicated service results from its shared deployment with the Rich UI application. If a Rich UI application accesses a web service, your deployment of the application typically requires that you specify the service location. However, if a Rich UI application accesses a dedicated service, your deployment of the application does not require the location detail. Instead, the service will be available wherever you deploy the Rich UI application. <p;>Note: Invocation of a dedicated service is slow in the Rich UI editor, but access is much faster when the application and services are deployed to a server.


Time required

This tutorial takes about 3 hours to finish. If you explore other concepts related to this tutorial, it might take longer to complete.

You can create the EGL files you need for this application in one of the following ways:

  • Line by line (most helpful) : Complete the individual lessons to explore the code in small, manageable chunks, learning important keywords and concepts. This method also requires the greatest time commitment.
  • Finished code files : At the end of each lesson in which you develop logic, you can link to the completed code, which you can copy into the Rich UI editor.

Skill level

Introductory

Audience

This tutorial is designed for people who know the basic concepts of programming and want experience with EGL Rich UI.

System requirements

To complete this tutorial, you must have the following tools and components installed on your computer:

  • A copy of the EGL Development Tools downloaded from the Eclipse EGL Development Tools project at http://eclipse.org/edt/.
  • A working Internet connection.

Prerequisites

You do not need any experience with EGL to complete this tutorial.

Expected results

You will create a working Rich UI application and database-access service.


Lessons in this tutorial

< Previous | Next >

Back to the top