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

Difference between revisions of "Jetty/Tutorial/EclipseRT-Jetty-Starter-Kit"

m
m
Line 6: Line 6:
  
 
== StarterKit Overview ==
 
== StarterKit Overview ==
Eclipse RT StarterKit is configured out of the box with
+
EclipseRT Jetty StarterKit is configured out of the box with
 
* Equinox
 
* Equinox
 
* P2 support: simpleconfigurator, dropins reconciler, provisioning commands for the OSGi console
 
* P2 support: simpleconfigurator, dropins reconciler, provisioning commands for the OSGi console

Revision as of 20:17, 9 June 2010



Introduction

This tutorial shows how to use the EclipseRT Jetty StarterKit.

Details

StarterKit Overview

EclipseRT Jetty StarterKit is configured out of the box with

  • Equinox
  • P2 support: simpleconfigurator, dropins reconciler, provisioning commands for the OSGi console
  • slf4j, logback
  • Jetty-7: servlet-2.5, JSP-2.1, JMX, JNDI, JTA, Websocket and continuations...
  • SDK additions: sources, JUnit support and PDE files.

Current download URL: http://download.eclipse.org/jetty/7.1.4.v20100609/dist-eclipse/

On the command-line

Launch

The starter kit can be launched via the equinox native launcher or directly through java. Regardless of the platform, the starter kit is packaged with simple shell scripts "start.bat" and "start.sh". Note that those scripts don't read the ini file read by the native launcher.

Jetty server configuration

The jetty server is configured via the etc/jetty.xml file.

Logging configuration

slf4j, logback: configured in etc/logback.xml

Upgrade and bundle management

Via P2 (link to the P2 console command controles and the P2 admin UI.) For example one can add JPA to the starter kit using the P2 provisioning commands:

osgi> provaddrepo http://download.eclipse.org/releases/helios
 
osgi> provliu http://download.eclipse.org/releases/helios
...
org.eclipse.persistence.jpa 2.1.0.v20100608-r7540
...
 
osgi> provinstall org.eclipse.persistence.jpa 2.1.0.v20100608-r7540
Installation complete for org.eclipse.persistence.jpa 2.1.0.v20100608-r7540

Note that it can take several minutes to install JPA for example. Note: Please refer to the documentation of each feature added.

For example EclipseLink in Helios requires that javax.persistence starts before org.eclipse.persistence.jpa.

<plugin id="javax.persistence" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.persistence.jpa" autoStart="true" startLevel="3" />

EclipseLink/Examples/OSGi/Equinox_Byte_Code_Weaving#Equinox_Configuration

One could also use the P2 Admin application to do this or an ant script as documented by the P2 project.

Dropins reconciler

It is possible to add bundles in the dropins folder. This is only for development purposes. For production it is recommended to publish your bundles and features in a P2 repository and use P2 to install them into the Starter Kit.

J2EE support

  • Web application can be dropped in the webapps folder.
  • Jetty Context files can be defined in the contexts folder.
  • Shared libraries between webapps can be placed inside lib/ext.

The resulting applications's classloaders behave in the same manner than in the traditional J2EE distribution of Jetty. Those web-applications and shared libraries don't have access to classes provided by OSGi bundles.

With Eclipse PDE

The SDK version of the starter kit is packaged with a PDE related files. This makes it faster to define the corresponding target platform and launch configuration.

Import the Starter Kit in the workspace

Import the downloaded starter kit as a Eclipse Project into your workspace. The project is called "EclipseRT Jetty Starter Kit".

Setup the Target Platform

At the root of the project, open the JettyStarterKitSDK.target file. Click on the top left on "Set As Target Platform."

Define the Target Platform

Note: You can also use the Target Platform definition wizard instead.

Launch configuration

The launch configuration "Start Jetty" is preset.

To create one from scratch, make a new OSGi launch configuration. Add the following system properties to the VM arguments:

 -Djetty.home=${workspace_loc:Jetty Starter Kit} -Dlogback.configurationFile=${workspace_loc:Jetty Starter Kit}/etc/logback.xml
launch Configuration with the EclipseRT Starter Kit

Web-bundles and test units

Please refer to Jetty OSGi Target Platform, tutorial; Create_a_first_web-bundle

Additional Resources

Jetty-OSGi, Jetty OSGi Target Platform, tutorial, RFC66, PDE

Back to the top