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 WTP Plugin"

Line 1: Line 1:
 
{{Jetty Feature
 
{{Jetty Feature
|introduction = This documentation explain how use WTP Adaptor for jetty 7.x/Jetty 8.x to start/stop WTP Dynamic Web Project(or external WEB application) with Jetty by using Eclipse WTP.
+
|introduction =
 
+
 
=== WTP Adaptor for Jetty 7.x/Jetty 8.x ===
 
=== WTP Adaptor for Jetty 7.x/Jetty 8.x ===
This documentation explain how use WTP Adaptor for jetty 7.x/Jetty 8.x to start/stop WTP Dynamic Web Project(or external WEB application) with Jetty by using Eclipse WTP. Eclipse JEE Helios is required (don't works with Eclipse JEE Galileo).
+
 
 +
The Jetty WTP Plugin allows you to use Eclipse and WTP to develop your web applications.
  
 
|body =
 
|body =
 +
This document explains how use the WTP Adaptor for jetty 7.x/Jetty 8.x to start/stop WTP Dynamic Web Project(or external WEB application) with Jetty by using Eclipse WTP.  Eclipse JEE Helios is required. (Galileo is not supported) The origin of this Jetty WTP Adaptor was based on the WTP Adaptor for Tomcat. 
  
This documentation explain how use WTP Adaptor for jetty 7.x/Jetty 8.x to start/stop WTP Dynamic Web Project(or external WEB application) with Jetty by using Eclipse WTP. Eclipse JEE Helios is required (don't works with Eclipse JEE Galileo). Those Jetty WTP Adaptor are developed by copying/pasting WTP Adaptor for Tomcat (so code is very , very uggly!!!) . It is managed with 2 Plug-Ins :  
+
It is composed of 3 plugins:  
  
* org.eclipse.jst.server.jetty.core :  
+
* org.eclipse.jst.server.jetty.core : central bits and pieces of the functionality
* org.eclipse.jst.server.jetty.ui :  
+
* org.eclipse.jst.server.jetty.ui : GUI components for integration with the Eclipse UI
* org.eclipse.jst.server.jetty.ui.websocket : which provides a Wizard to generate Jetty WebSocket.
+
* org.eclipse.jst.server.jetty.ui.websocket : GUI components which provide a Wizard to generate Jetty WebSocket
 +
 
 +
== Installation ==
 +
 
 +
There are two different paths to installing the plugin.
 +
 
 +
For the slower stable releases of the plugin install from the following url:
 +
 
 +
* http://download.eclipse.org/jetty/updates/jetty-wtp
 +
 
 +
For the more bleeding edge version of the plugin (each successful build on hudson):
 +
 
 +
* http://download.eclipse.org/jetty/updates/jetty-wtp/development
  
You can find the plugins at http://download.eclipse.org/jetty/updates/jetty-wtp
 
  
 
== Helpful Pages ==
 
== Helpful Pages ==
Line 23: Line 35:
 
* [[/Jetty WTP Modify ContextPath|How to modify context path]]
 
* [[/Jetty WTP Modify ContextPath|How to modify context path]]
 
* [[/Jetty WTP Websocket Wizard|How to use websocket wizard]]
 
* [[/Jetty WTP Websocket Wizard|How to use websocket wizard]]
 +
 +
== Contributing ==
 +
 +
To report a bug with the WTP integration please open a bugzilla issue: https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Jetty
 +
 +
Patches are welcome, the plugins are setup so that you can import the project source within the Eclipse simply.  In the Plugins View locate the bundle and right click -> Import As -> Source Project.
  
 
}}
 
}}

Revision as of 16:44, 17 November 2010



Introduction

WTP Adaptor for Jetty 7.x/Jetty 8.x

The Jetty WTP Plugin allows you to use Eclipse and WTP to develop your web applications.

Feature

This document explains how use the WTP Adaptor for jetty 7.x/Jetty 8.x to start/stop WTP Dynamic Web Project(or external WEB application) with Jetty by using Eclipse WTP. Eclipse JEE Helios is required. (Galileo is not supported) The origin of this Jetty WTP Adaptor was based on the WTP Adaptor for Tomcat.

It is composed of 3 plugins:

  • org.eclipse.jst.server.jetty.core : central bits and pieces of the functionality
  • org.eclipse.jst.server.jetty.ui : GUI components for integration with the Eclipse UI
  • org.eclipse.jst.server.jetty.ui.websocket : GUI components which provide a Wizard to generate Jetty WebSocket

Installation

There are two different paths to installing the plugin.

For the slower stable releases of the plugin install from the following url:

For the more bleeding edge version of the plugin (each successful build on hudson):


Helpful Pages

Contributing

To report a bug with the WTP integration please open a bugzilla issue: https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Jetty

Patches are welcome, the plugins are setup so that you can import the project source within the Eclipse simply. In the Plugins View locate the bundle and right click -> Import As -> Source Project.

Back to the top