Java, Eclipse and Web programming Tutorials

Java Emitter Template (JET) - Tutorial

Lars Vogel

Version 0.2

02.12.2009

Revision History
Revision 0.1 02.08.2009Lars Vogel
Splitted of from http://www.vogella.de/articles/EclipseEMF/article.html
Revision 0.202.12.2009Lars Vogel
Fixed missing headline

Eclipse JET

This article describes the usage of Eclipse JET to transform Eclipse EMF models into other output. JET will be used to generated HTML output from an EMF model.

This article assumes that you have already good Eclipse knowledge.


Table of Contents

1. Java Emitter Template (JET)
1.1. Overview
1.2. Prerequisites
2. Installation
3. Create your Jet Project
3.1. Convert project
3.2. JET template editor
3.3. JET directive
3.4. Usage of JET
3.5. Include
4. Thank you
5. Questions and Discussion
6. Links and Literature
6.1. Source Code
6.2. JET Resources
6.3. Other Resources

1. Java Emitter Template (JET)

1.1. Overview

EMF contains JET an engine which can generated any kind of output based on the model, e.g. SQL, Java, XML, Text, HTML, etc. JET uses a template technology which is very closely related to the Syntax of Java Server Pages (JSPs).

In JET you define templates. These templates will be used to create Java Implementation classes. This process step is called "translation" .

The Java classes can then be used to create the final output, e.g. a HTML file. This generated class can be initialized and will create the desired result as a String with the method "generate()". This process step is called "generation"

This process is analog to JSPs. The JSP template is also converted into a class (servlet); the servlet then creates the desired output and returns it to the browser.

JET has three different types of expressions, e.g. directives, expressions and scriplets. Scriplets are started with <% and ended with %> and can contain any java code. Expressions allow to insert string values within the JET output and the directives defines the settings for the JET template.

The JET compiler creates a Java source file for each JET. The suggestion for the JET templates is to use the following naming schema: ClassName.outputsuffixjet, whereby the outputsuffix determins the output, e.g. java for Java Source or html for HTML files.

1.2. Prerequisites

The following will use the webpage example created in Eclipse EMF Tutorial . Please make sure you have create the EMF model described in this article.

2. Installation

Install EMF via the update manager of Eclipse (please see Eclipse Update manager for details). Select "Modeling" and install "Java Emitter Templates (JET) SDK".

3. Create your Jet Project

3.1. Convert project

To use JET within a project you have to convert the project to a JET project. Select New -> Other and then the following entry.

Select the project which should be converted. Press finish.

A new folder "templates" will be created. All templates which will be created / saved, will be automatically converted by the JET engine.

Select your project, right click, select properties, select Jet Settings and maintain the "Source Container" as "src". This is there JET will save the Java class after the template generation.

3.2. JET template editor

The JET project provides an editor for JET templates. Unfortunately this editor does currently not work, please see NPE in JET Editor

3.3. JET directive

The first lines of a JET file must consists of the JET directive. The package parameter defines the Java package in which the Java class is generated. The class parameter defines the name of the generated class and imports defines the necessary imports for the created class. The folder in which the code in generated is defined via the "Source Container".

3.4. Usage of JET

The template you have to create must have the "jet" suffix. For example to create a file web.html the template must be called web.htmljet.

Select the project which should be converted. A new folder "templates" will be created. All templates which will be created / saved here, will be automatically converted by the JET engine.

Select your project, right click, select properties, select Jet Settings and maintain the "Source Container". This is there JET will save the Java class after the template generation.

Create the following file "Simple2HTML.htmljet" in the template folder and save.

				
<%@ jet package="generator.website"
class="Simple2HTML" imports ="java.util.Iterator org.eclipse.emf.common.util.EList datamodel.website.*;"
%>
<% Webpage website = (Webpage) argument; %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html> 
<head> <title> <%=website.getTitle()%> </title>

<meta name="description" content="<%=website.getDescription()%>"> 
<meta name="keywords" content="<%=website.getKeywords()%>">
<meta name="robots" content="index, follow">
<meta name="language" content="en">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1> List of Articles Names</h2>
<%EList<Article> list = website.getArticles();
    for (Iterator<Article> iterator = list.iterator(); iterator.hasNext();) {
	Article article = iterator.next();
%>
<b> 
	<%=article.getName()%>
	</b>
	
	
	Imagine other interesting information about the article.
	<br>
	<% 
}%>




</body>

</html>
			

After saving the class Simple2HTML will be created in your source folder in package generator.website. This is because the JET directive has defined this.

<%@ jet package="generator.website" class="Simple2HTML" imports ="java.util.Iterator org.eclipse.emf.common.util.EList datamodel.website.*;" %>

Have a look at the generated class. You can now use the generated class to create HTML output. For example use the following coding to create HTML pages which lists the articles of each Webpage.

				
package writeWebpage;

import generator.website.Simple2HTML;

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Iterator;

import datamodel.website.MyWeb;
import datamodel.website.Webpage;

public class SimpleWebTest {
	private static String TARGETDIR = "./output/";

	public static void main(String[] args) {
		EMFModelLoad loader = new EMFModelLoad();
		MyWeb myWeb = loader.load();
		createPages(myWeb);
	}

	private static void createPages(MyWeb myWeb) {
		Simple2HTML htmlpage = new Simple2HTML();
		FileWriter output;
		BufferedWriter writer;
		for (Iterator<Webpage> iterator = myWeb.getPages().iterator(); iterator
				.hasNext();) {
			Webpage page = iterator.next();
			System.out.println("Creating " + page.getName());

			try {
				output = new FileWriter(TARGETDIR + page.getName() + ".html");
				writer = new BufferedWriter(output);
				writer.write(htmlpage.generate(page));
				writer.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}
}

			

3.5. Include

As with JSPs common elements can be included into the JET templates via the include declaration. For example if your webpages all use the same header, you could declare the header in a separate file and include it <%@ include file = "header.html" %>

4. Thank you

Thank you for practicing with this tutorial.

Please note that I maintain this website in my private time. If you like the information I'm providing please help me by donating.

5. Questions and Discussion

For questions and discussion around this article please use the www.vogella.de Google Group. Also if you note an error in this article please post the error and if possible the correction to the Group.

I believe the following is a very good guideline for asking questions in general and also for the Google group How To Ask Questions The Smart Way.

6. Links and Literature

6.1. Source Code

http://www.vogella.de/code/codeeclipse.html Source Code of Examples

6.2. JET Resources

http://www.eclipse.org/modeling/m2t/?project=jet#jet Eclipse JET Main page