private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
Embedding Jetty
Setting up the classpath
To run Jetty, you need only these jars:
- jetty.jar
- servlet-api-2.5.jar
- jetty-util.jar
Those jars give you the ability to serve web applications.
If you wish to use JSPs, then you will need a couple of additional jars.
JSP2.0
JSP 2.0 is used with version 2.4 of the servlet specification. Depending on the functionality you require, you may be able to use this version rather than the newer JSP2.1 jars.
JSP2.1
| Remember! You need to use J2SE5 (aka jdk 1.5) if you wish to use JSP2.1. |
This is the jsp version mandated by servlet specification 2.5. You will need these jars:
Code
The jetty configuration files (eg jetty.xml) have an xml syntax that is a straightforward mapping of the java API. Take a look at the files in etc/ for some hints on what calls to make in your own code. Here's the minimal code to set up a Jetty server and webapp:
For More Information
There are several examples of embedding Jetty in the distribution in the examples/embedded directory. Also take a look at the Tutorial on Embedding Jetty.