Example usage for org.springframework.web.servlet HttpServletBean subclass-usage

List of usage examples for org.springframework.web.servlet HttpServletBean subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet HttpServletBean subclass-usage.

Usage

From source file gov.nih.nci.ncicb.tcga.dcc.common.web.StaticContentServlet.java

/**
 * Servlet definition that renders resource from a url. The code comes from the spring
 * ResourceServlet which allows for resolving of resources (static content) in jar files.
 * This servlet has been modified and reduced to the need of allowing a default rendering of
 * static resources in a spring environment when a dispatcher servlet has mapping to *.htm files for example.
 * Use this servelt to render any resources as-is by your application server.

From source file org.tdmx.server.sx.Servlet.java

public class Servlet extends HttpServletBean {

    private static final long serialVersionUID = -7863212380245590483L;

    private static final Logger log = LoggerFactory.getLogger(Servlet.class);

From source file org.springframework.js.resource.ResourceServlet.java

/**
 * Special resource servlet for efficiently resolving and rendering static resources from within a JAR file.
 * 
 * @author Jeremy Grelle
 * @author Scott Andrews
 * 

From source file org.impalaframework.web.servlet.ResourceServlet.java

/**
 * Special resource servlet for efficiently resolving and rendering static resources from within a JAR file.
 * Based on original source code from Spring Web Flow js module. No other changes have been applied to the file at time of initial checkin.
 * 
 * @author Jeremy Grelle
 * @author Scott Andrews