Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EDT:Deployment Introduction

Introduction

To make an EGL application run in a test or production environment, you must have the generated HTML, Java class, and JavaScript files packaged into a WAR file which conforms to the Java EE specification, and then deploy it to the web application server sush as Tomcat.  The EGL project itself cannot be exported as a WAR file directly, so we introduce the concept of deployment.   Deployment in EDT means to copy the generated output from an EGL project to a specified Java EE project, and to make sure the files and directory structure after the copy will conform to the Java EE specification, and can easily be exported as a WAR file.  EDT users can control the deployment process by specifying the configuation in a deployment descriptor.

Deployment Descriptor File

There will be a deployment descriptor (DD for short) file in each EGL project you have created. As we introduced in the last section, an EDT deployment operation is needed if you are writing an EGL project with a handler or service. The DD file maintains all of the information needed for deployment. The following section will introduce the details of this.


The DD file will be created automatically when you create any of the EGL project types in EDT. It will be placed in the EGLSource folder with the same name as your project. Although RUIHandler and service deployment be will added to DD file automatically when you use the creation wizard, there are still some settings which will need your manual modification. See the points listed below.

Overview Tab:

This tab shows all of the status of the details tabs. You can switch to a specific tab by clicking Details or by double-clicking on the item in the grid.


The Target Project combo box lists all dynamic web projects in the current workspace. You should select one of the projects,  or create a new one.  When doing deployment, this field can not be empty.


Overview EDT.JPG

Rich UI and Service Deployment:

One of the main purposes for the DD file is to deploy Rich UI Handlers and REST services to the target project. These two types of EGL files will be added to the DD file by default when you create them with the creation wizard.


You can manually modify the Rich UI Handlers and services you want to deploy in these two tabs.

RichUI EDT.JPG

To modify the Rich UI Handlers you want to deploy, you need to uncheck the Deploy all Rich UI Handlers checkbox. You can select one or more RUI handlers you want to deploy. The selected RUI handlers will be deployed to the target project, including HTML and JavaScript.  You can also modify the locale settings for the HTML file by configuring the Locale Settings table.

ServiceDeplooy EDT.JPG

In the Service Deployment tab, all of the REST services you have created will be listed in the table. If you forgot to check the option Create as Web Services when creating your services, you can modify them in this tab. Just click the Add button at the right of the table. The Add Web Services wizard will pop up, and you can manage the services in this window. When your configuration is complete, click Finish to accept it.

Resource Bindings:

The Resource Binding tab configures the database resources or deployed REST services you may want to use in this project.  If the project contains database logic,  EGL REST services, or non-EGL service invocations, you may use these tabs to configure these settings.
For details of Resource Binding, see  Resource Binding Introduction.

Imports & Resources:

The Imports tab allows you to reference another DD file in a different project to reuse some of the settings. It can make your project structure more clear. For example, suppose you have two EGL projects, where the first one includes all Rich UI Handlers, and the other one includes all services. Then when you deploy the Rich UI Handler project, you can simply import the project that contains your services. This can reduce redundancy and provide better consistency.


The Resources tab allows you to modify the resources you want to deploy. By default, all resources in the WebContent, generatedJava, generatedJavaScript, and src folders will be deployed. For example, you can modify the resources to remove the src folder to reduce the size of the target project.

Deployment Operation

There are two way to trigger a deployment operation. You can trigger it by right-clicking on the DD file to bring up the context menu, and then selecting Deploy EGL Descriptor; or by clicking this button Deploy EDT.JPG at the top right of the DD file editor view. If the target project of the DD file is empty, there will be an alert notifying you to modify it since EGL projects are deployed as web projects. You will also see an alert if no Rich UI Handler or service deployment has been added in the DD file since nothing has been selected to deploy.


Some Tips of Deployment

If you are using Java external types in your projects, you should have configured the Java build path of your EGL project to make sure there are no compile errors in the generated Java code. But when you deploy the EGL project to the target project, the external JAR can not be deployed to the target project. You need to modify the Java build path again in the target project manually.


Back to the top