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/Feature/Servlets Bundled with Jetty"

< Jetty‎ | Feature
m
Line 1: Line 1:
 
{{Jetty Feature
 
{{Jetty Feature
| introduction = (required)
+
| introduction =
 
With the release of Jetty 7 as a light-weight embeddable server, it doesn't neglect handling of servlets aside from web application's presentation-based java server pages (JSP). In fact, servlet is one of the foundation of Jetty as a component-based infrastructure to hold and run j2ee applications.
 
With the release of Jetty 7 as a light-weight embeddable server, it doesn't neglect handling of servlets aside from web application's presentation-based java server pages (JSP). In fact, servlet is one of the foundation of Jetty as a component-based infrastructure to hold and run j2ee applications.
  
Jetty 7 ships with a bundle of servlets that interacts with the key classes. Mostly they can be found in the org.eclipse.servlets package. Below is a list of servlets playing a major role in running and maintaining the Jetty server.
+
Jetty 7 ships with a bundle of servlets that interacts with the key classes. Mostly they can be found in the org.eclipse.servlets package. Below is a list of servlets playing a major role in running and maintaining the Jetty server. For more information, please refer to [http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/package-summary.html javadoc] for the package.
 
| body =
 
| body =
 
===GzipFilter===
 
===GzipFilter===
  
See [[Jetty/Feature/GZIP Compression|GZIP Compression]].
+
See [[Jetty/Feature/GZIP Compression|GZIP Compression]]. ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/GzipFilter.html javadoc])
  
 
===MultiPartFilter===
 
===MultiPartFilter===
  
This class implements the Filter interface that is called by the web container. It acts as a decoder of the mulitpart/form-data stream sent by a HTML form that utilizes a file input item. Any files that is sent are stored to a temporary location and there will be a file object added to the request which will act as an attribute. It is made available that other values through the usual getParameter API and the setCharacterEncoding mechanism is respected when converting bytes to Strings.
+
This class implements the Filter interface that is called by the web container. It acts as a decoder of the mulitpart/form-data stream sent by a HTML form that utilizes a file input item. Any files that is sent are stored to a temporary location and there will be a file object added to the request which will act as an attribute. It is made available that other values through the usual getParameter API and the setCharacterEncoding mechanism is respected when converting bytes to Strings. ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/MultiPartFilter.html javadoc])
  
 
===NoJspServlet===
 
===NoJspServlet===
  
This is a simple servlet which extends the abstract class HttpServlet that displays the code 500 error message "JSP support not configured."
+
This is a simple servlet which extends the abstract class HttpServlet that displays the code 500 error message "JSP support not configured." ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/NoJspServlet.html javadoc])
  
 
===ProxyServlet===
 
===ProxyServlet===
  
This is an experimental servlet which implements the Servlet interface. It acts as an authorized servlet on behalf on another running servlet. This seems not to be a substitute for the running servlet but provides a mirror for the service.
+
This is an experimental servlet which implements the Servlet interface. It acts as an authorized servlet on behalf on another running servlet. This seems not to be a substitute for the running servlet but provides a mirror for the service. ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/ProxyServlet.html javadoc])
  
 
===QoSFilter===
 
===QoSFilter===
  
Quality of Service Filter. This filter limits the number of active requests to the number set by the "maxRequests" init parameter (default 10). If more requests are received, they are suspended and placed on priority queues. Priorities are determined by the getPriority(ServletRequest) method and are a value between 0 and the value given by the "maxPriority" init parameter (default 10), with higher values having higher priority.
+
Quality of Service Filter ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/QoSFilter.html javadoc]). This filter limits the number of active requests to the number set by the "maxRequests" init parameter (default 10). If more requests are received, they are suspended and placed on priority queues. Priorities are determined by the getPriority(ServletRequest) method and are a value between 0 and the value given by the "maxPriority" init parameter (default 10), with higher values having higher priority.
  
 
This filter is ideal to prevent wasting threads waiting for slow/limited resources such as a JDBC connection pool. It avoids the situation where all of a containers thread pool may be consumed blocking on such a slow resource. By limiting the number of active threads, a smaller thread pool may be used as the threads are not wasted waiting. Thus more memory may be available for use by the active threads.
 
This filter is ideal to prevent wasting threads waiting for slow/limited resources such as a JDBC connection pool. It avoids the situation where all of a containers thread pool may be consumed blocking on such a slow resource. By limiting the number of active threads, a smaller thread pool may be used as the threads are not wasted waiting. Thus more memory may be available for use by the active threads.
Line 33: Line 33:
 
===DoSFilter===
 
===DoSFilter===
  
This has been replaced by the QoSFilter. Implemented by the Filter interface, the DoSFilter servlet concern is to protect a web application from having to handle an unmanageable load. This accounts when there is a server that holds one application with standardized resource restrictions and with this will be controlled by lowering or limiting the size of the ThreadPool. But when there are several applications in service or a single app having different resource requirements to different URLs, then the DoSFilter comes in and guiding the number of requests being handled by Jetty.
+
This has been replaced by the QoSFilter ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/DoSFilter.html javadoc]). Implemented by the Filter interface, the DoSFilter servlet concern is to protect a web application from having to handle an unmanageable load. This accounts when there is a server that holds one application with standardized resource restrictions and with this will be controlled by lowering or limiting the size of the ThreadPool. But when there are several applications in service or a single app having different resource requirements to different URLs, then the DoSFilter comes in and guiding the number of requests being handled by Jetty.
  
 
The filter has three configurable values:
 
The filter has three configurable values:
Line 45: Line 45:
 
===WelcomeFilter===
 
===WelcomeFilter===
  
This is another serlvet which also implements the Filter interface. This forwards any servlets to the necessary welcome display of an application when serviced.
+
This is another serlvet which also implements the Filter interface. This forwards any servlets to the necessary welcome display of an application when serviced. ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/WelcomeFilter.html javadoc])
  
 
===DefaultServlet===
 
===DefaultServlet===
  
Found in the org.eclipse.jetty.servlets package, this servlet implements the ResourceFactory interface and extends the HttpServlet abstract class. This is the default servlet of Jetty usually mapped to / provides handling for static content, OPTION and TRACE methods for the    context. The MOVE method is allowed if PUT and DELETE are allowed.
+
Found in the org.eclipse.jetty.servlets package, this servlet implements the ResourceFactory interface and extends the HttpServlet abstract class. This is the default servlet of Jetty usually mapped to / provides handling for static content, OPTION and TRACE methods for the    context. The MOVE method is allowed if PUT and DELETE are allowed. ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/DefaultServlet.html javadoc])
 
+
 
The following initParameters are supported:
 
The following initParameters are supported:
  
Line 67: Line 67:
 
===CGI===
 
===CGI===
  
The CGI servlet class extends the abstract HttpServlet class. When the init parameter is called, the cge bin directory is set with the cgibinResourceBase otherwise, it will default to the resource base of the context. There are three parameteres that the cgi bin is using:
+
The CGI servlet class extends the abstract HttpServlet class ([http://download.eclipse.org/jetty/stable-7/apidocs/org/eclipse/jetty/servlets/CGI.html javadoc]). When the init parameter is called, the cge bin directory is set with the cgibinResourceBase otherwise, it will default to the resource base of the context. There are three parameteres that the cgi bin is using:
  
 
<source lang="text">
 
<source lang="text">

Revision as of 23:50, 21 June 2010



Introduction

With the release of Jetty 7 as a light-weight embeddable server, it doesn't neglect handling of servlets aside from web application's presentation-based java server pages (JSP). In fact, servlet is one of the foundation of Jetty as a component-based infrastructure to hold and run j2ee applications.

Jetty 7 ships with a bundle of servlets that interacts with the key classes. Mostly they can be found in the org.eclipse.servlets package. Below is a list of servlets playing a major role in running and maintaining the Jetty server. For more information, please refer to javadoc for the package.

Feature

GzipFilter

See GZIP Compression. (javadoc)

MultiPartFilter

This class implements the Filter interface that is called by the web container. It acts as a decoder of the mulitpart/form-data stream sent by a HTML form that utilizes a file input item. Any files that is sent are stored to a temporary location and there will be a file object added to the request which will act as an attribute. It is made available that other values through the usual getParameter API and the setCharacterEncoding mechanism is respected when converting bytes to Strings. (javadoc)

NoJspServlet

This is a simple servlet which extends the abstract class HttpServlet that displays the code 500 error message "JSP support not configured." (javadoc)

ProxyServlet

This is an experimental servlet which implements the Servlet interface. It acts as an authorized servlet on behalf on another running servlet. This seems not to be a substitute for the running servlet but provides a mirror for the service. (javadoc)

QoSFilter

Quality of Service Filter (javadoc). This filter limits the number of active requests to the number set by the "maxRequests" init parameter (default 10). If more requests are received, they are suspended and placed on priority queues. Priorities are determined by the getPriority(ServletRequest) method and are a value between 0 and the value given by the "maxPriority" init parameter (default 10), with higher values having higher priority.

This filter is ideal to prevent wasting threads waiting for slow/limited resources such as a JDBC connection pool. It avoids the situation where all of a containers thread pool may be consumed blocking on such a slow resource. By limiting the number of active threads, a smaller thread pool may be used as the threads are not wasted waiting. Thus more memory may be available for use by the active threads.

Furthermore, this filter uses a priority when resuming waiting requests. So that if a container is under load, and there are many requests waiting for resources, the getPriority(ServletRequest) method is used, so that more important requests are serviced first. For example, this filter could be deployed with a maxRequest limit slightly smaller than the containers thread pool and a high priority allocated to admin users. Thus regardless of load, admin users would always be able to access the web application.

The maxRequest limit is policed by a Semaphore and the filter will wait a short while attempting to acquire the semaphore. This wait is controlled by the "waitMs" init parameter and allows the expense of a suspend to be avoided if the semaphore is shortly available. If the semaphore cannot be obtained, the request will be suspended for the default suspend period of the container or the valued set as the "suspendMs" init parameter.

DoSFilter

This has been replaced by the QoSFilter (javadoc). Implemented by the Filter interface, the DoSFilter servlet concern is to protect a web application from having to handle an unmanageable load. This accounts when there is a server that holds one application with standardized resource restrictions and with this will be controlled by lowering or limiting the size of the ThreadPool. But when there are several applications in service or a single app having different resource requirements to different URLs, then the DoSFilter comes in and guiding the number of requests being handled by Jetty.

The filter has three configurable values:

maximum - determines the maximum number of requests that may be on the filter chain anytime
block - determines how long (in milliseconds) a request will be queued before it is rejected. Setting this to -1 blocks indefinitely
queue - determines how many requests can be queued simultaneously and any additional requests will be rejected. Setting this to 0 turns off queueing

WelcomeFilter

This is another serlvet which also implements the Filter interface. This forwards any servlets to the necessary welcome display of an application when serviced. (javadoc)

DefaultServlet

Found in the org.eclipse.jetty.servlets package, this servlet implements the ResourceFactory interface and extends the HttpServlet abstract class. This is the default servlet of Jetty usually mapped to / provides handling for static content, OPTION and TRACE methods for the context. The MOVE method is allowed if PUT and DELETE are allowed. (javadoc)

The following initParameters are supported:

acceptRanges - if true, range requests and responses are supported
dirAllowed - if true, directory listings are returned if no welcome file is found. otherwise 403 Forbidden is displayed
redirectWelcome - if true, welcome files are redirected rather that forwarded to
gzip - if set to true, then static content will be served as gzip content encoded if a matching resource is found ending with ".gz"
resourceBase - set to replace the context resource base
aliases - if true - aliases of resources are allowed (e.g. symbolic links and caps variations) and may bypass security constraints
maxCacheSize - the maximum total size of the cache or 0 for no cache<br />  maxCachedFileSize - the maximum size of a file to cache
maxCachedFiles - the maximum number of files to cache
useFileMappedBuffer - if set to true, it will use mapped file buffer to serve static content when using NIO connector. Setting this value to false means that a direct buffer will be used instead of a mapped file buffer. By default, this is set to true

CGI

The CGI servlet class extends the abstract HttpServlet class (javadoc). When the init parameter is called, the cge bin directory is set with the cgibinResourceBase otherwise, it will default to the resource base of the context. There are three parameteres that the cgi bin is using:

commandPrefix - this is the init parameter that is obtained when there is a prefix set to all commands directed to the method exec
Path - this is just an init parameter passed to the exec environment as a PATH. However, this must be run unpacked somewhere in the filesystem
ENV_ - initParameter that starts with ENV_ is used to point to an environment variable with the name stripped of theleading ENV_ and using the init parameter value

Back to the top