Servlets and Filters

From Resin 3.0

(Difference between revisions)
Jump to: navigation, search
 
(2 intermediate revisions by one user not shown)
Line 1: Line 1:
 +
{{Cleanup}}
 
[[Category:Servlet Library]] [[Category:Filter Library]]
 
[[Category:Servlet Library]] [[Category:Filter Library]]
  
Line 6: Line 7:
  
 
* [[FileServlet]] - handles normal files
 
* [[FileServlet]] - handles normal files
 +
* [[JspServlet]] - handles [[JSP]] files
 
* [[FastCGIServlet]] - handles backend fast cgi
 
* [[FastCGIServlet]] - handles backend fast cgi
 
* [[HttpProxyServlet]] - proxies HTTP requests to a backend
 
* [[HttpProxyServlet]] - proxies HTTP requests to a backend
 +
* [[SSIServlet]] - provides basic server-side include functionality
  
 
== Filter Library ==
 
== Filter Library ==

Latest revision as of 19:05, 2 December 2011

40px-Edit-clear.png This article requires cleanup and may refer to a legacy version of Resin.

Please visit http://www.caucho.com/documentation/ for the most up-to-date documentation.

Corresponding Resin documentation is http://www.caucho.com/resin-3.0/servlet.

Contents

Servlet Library

Filter Library


Using a servlet as the welcome page

  1. Create a dummy index.htm file.
  2. Add index.htm to the <welcome-file-list> element of your web.xml.
  3. Create a <servlet-mapping>element for your welcome servlet that maps to /index.htm.
  4. Deploy the application, fire up your favourite browser, and enjoy!

The following is an example web.xml file:

<web-app>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>index.xtp</welcome-file>
    <welcome-file>index.htm</welcome-file>
  </welcome-file-list>

  <servlet>
    <servlet-name>welcome</servlet-name>
    <servlet-class>your.welcome.Servlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <url-pattern>/index.htm</servlet-class>
    <servlet-name>welcome</servlet-class>
  </servlet-mapping>

</web-app>

Gzip filter

This is some addendum to what is available at http://www.caucho.com/resin-3.0/servlet/filter-library.xtp#GzipFilter.

  • the correct class name is com.caucho.filters.GzipFilter as used in the example configuration, not the javadoc reference on the line afterward
  • this filter is only available in the Pro version.

Also the reference to the GzipFilter on http://www.caucho.com/resin-3.0/features/overview.xtp#gzip has a bad link for the documentation and should be linked to the link above.

Personal tools