public abstract class AbstractHttpServlet extends javax.servlet.http.HttpServlet implements ResourceConnector
Also implements Groovy's ResourceConnector
in a dynamic
manner. It allows you to modify the resource name that is searched for with a
replace all operation. See Pattern
and
Matcher
for details.
The servlet init parameter names are:
resource.name.regex = empty - defaults to null resource.name.replacement = empty - defaults to null resource.name.replace.all = true (default) | false means replaceFirst()Note: If you specify a regex, you have to specify a replacement string too! Otherwise an exception gets raised.
This implementation provides a verbosity flag switching log statements. The servlet init parameter name is:
verbose = false(default) | true
In order to support class-loading-troubles-debugging with Tomcat 4 or higher, you can log the class loader responsible for loading some classes. See GROOVY-861 for details. The servlet init parameter name is:
log.GROOVY861 = false(default) | true
If you experience class-loading-troubles with Tomcat 4 (or higher) or any other servlet container using custom class loader setups, you can fallback to use (slower) reflection in Groovy's MetaClass implementation. Please contact the dev team with your problem! Thanks. The servlet init parameter name is:
reflection = false(default) | true
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CONTENT_TYPE_TEXT_HTML
Content type of the HTTP response.
|
protected java.lang.String |
encoding
Encoding to use, becomes charset part of contentType.
|
static java.lang.String |
INC_PATH_INFO
Servlet API include key name: path_info
|
static java.lang.String |
INC_REQUEST_URI |
static java.lang.String |
INC_SERVLET_PATH
Servlet API include key name: servlet_path
|
protected boolean |
reflection
Mirrors the static value of the reflection flag in MetaClass.
|
protected java.util.regex.Matcher |
resourceNameMatcher
Either
null or a compiled pattern matcher read from "resource.name.regex "
and used in getScriptUri(HttpServletRequest) . |
protected boolean |
resourceNameReplaceAll
The replace method to use on the matcher.
|
protected java.lang.String |
resourceNameReplacement
The replacement used by the resource name matcher.
|
protected javax.servlet.ServletContext |
servletContext
Servlet (or the web application) context.
|
protected boolean |
verbose
Controls almost all log output.
|
Constructor and Description |
---|
AbstractHttpServlet()
Initializes all fields with default values.
|
Modifier and Type | Method and Description |
---|---|
java.net.URLConnection |
getResourceConnection(java.lang.String name)
Interface method for ResourceContainer.
|
protected java.lang.String |
getScriptUri(javax.servlet.http.HttpServletRequest request)
Returns the include-aware uri of the script or template file.
|
protected java.io.File |
getScriptUriAsFile(javax.servlet.http.HttpServletRequest request)
Parses the http request for the real script or template source file.
|
void |
init(javax.servlet.ServletConfig config)
Overrides the generic init method to set some debug flags.
|
protected void |
setVariables(ServletBinding binding)
Override this method to set your variables to the Groovy binding.
|
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service, service
public static final java.lang.String CONTENT_TYPE_TEXT_HTML
public static final java.lang.String INC_PATH_INFO
public static final java.lang.String INC_REQUEST_URI
public static final java.lang.String INC_SERVLET_PATH
protected javax.servlet.ServletContext servletContext
protected java.util.regex.Matcher resourceNameMatcher
null
or a compiled pattern matcher read from "resource.name.regex
"
and used in getScriptUri(HttpServletRequest)
.protected java.lang.String resourceNameReplacement
protected boolean resourceNameReplaceAll
true - replaceAll(resourceNameReplacement); (default) false - replaceFirst(resourceNameReplacement);
protected boolean verbose
protected java.lang.String encoding
protected boolean reflection
public AbstractHttpServlet()
public java.net.URLConnection getResourceConnection(java.lang.String name) throws ResourceException
getResourceConnection
in interface ResourceConnector
ResourceException
protected java.lang.String getScriptUri(javax.servlet.http.HttpServletRequest request)
request
- the http request to analyzeprotected java.io.File getScriptUriAsFile(javax.servlet.http.HttpServletRequest request)
request
- the http request to analyzenull
if the
servlet container cannot translate the virtual path to a real
path for any reason (such as when the content is being made
available from a .war archive).public void init(javax.servlet.ServletConfig config) throws javax.servlet.ServletException
init
in interface javax.servlet.Servlet
init
in class javax.servlet.GenericServlet
config
- the servlet configuration provided by the containerjavax.servlet.ServletException
- if init() method defined in super class
javax.servlet.GenericServlet throws itprotected void setVariables(ServletBinding binding)
All variables bound the binding are passed to the template source text, e.g. the HTML file, when the template is merged.
The binding provided by TemplateServlet does already include some default
variables. As of this writing, they are (copied from
ServletBinding
):
And via implicit hard-coded keywords:
The binding also provides convenient methods:
Example binding all servlet context variables:
class MyServlet extends TemplateServlet {
protected void setVariables(ServletBinding binding) {
// Bind a simple variable
binding.setVariable("answer", new Long(42));
// Bind all servlet context attributes...
ServletContext context = (ServletContext) binding.getVariable("context");
Enumeration enumeration = context.getAttributeNames();
while (enumeration.hasMoreElements()) {
String name = (String) enumeration.nextElement();
binding.setVariable(name, context.getAttribute(name));
}
}
}
binding
- to be modified