Package | Description |
---|---|
freemarker.cache |
Template loading and caching.
|
freemarker.core |
The seldom used or advanced parts of the fundamental FreeMarker API, compared to
freemarker.template . |
freemarker.ext.servlet |
Servlet for legacy "Model 2" frameworks that allows using FreeMarker
templates instead of JSP as the MVC View
(see in the Manual).
|
freemarker.template |
The fundamental, most commonly used API-s of FreeMarker;
start with
Configuration (also see
Getting Stared in the Manual.) |
freemarker.template.utility |
Various classes used by core FreeMarker code but might be useful outside of it too.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
TemplateCache.getFullTemplatePath(Environment env,
java.lang.String currentTemplateDir,
java.lang.String targetTemplatePath)
Resolves a path-like reference to a template (like the one used in
#include or #import ), assuming
a current directory. |
Modifier and Type | Method and Description |
---|---|
static Environment |
Environment.getCurrentEnvironment()
Retrieves the environment object associated with the current
thread.
|
protected Environment |
Configurable.getEnvironment() |
Modifier and Type | Method and Description |
---|---|
protected void |
Configurable.doAutoImportsAndIncludes(Environment env) |
java.lang.Class |
TemplateClassResolver.resolve(java.lang.String className,
Environment env,
Template template)
Gets a
Class based on the class name. |
java.lang.Class |
OptInTemplateClassResolver.resolve(java.lang.String className,
Environment env,
Template template) |
Constructor and Description |
---|
InvalidReferenceException(Environment env) |
InvalidReferenceException(java.lang.String description,
Environment env) |
NonBooleanException(Environment env) |
NonBooleanException(java.lang.String description,
Environment env) |
NonDateException(Environment env) |
NonDateException(java.lang.String description,
Environment env) |
NonNumericalException(Environment env) |
NonNumericalException(java.lang.String description,
Environment env) |
NonStringException(Environment env) |
NonStringException(java.lang.String description,
Environment env) |
UnexpectedTypeException(Environment env,
java.lang.String description) |
Modifier and Type | Method and Description |
---|---|
void |
IncludePage.execute(Environment env,
java.util.Map params,
TemplateModel[] loopVars,
TemplateDirectiveBody body) |
Modifier and Type | Method and Description |
---|---|
Environment |
Template.createProcessingEnvironment(java.lang.Object dataModel,
java.io.Writer out)
|
Environment |
Template.createProcessingEnvironment(java.lang.Object dataModel,
java.io.Writer out,
ObjectWrapper wrapper)
Creates a
Environment object, using this template, the data-model provided as
parameter. |
Environment |
TemplateException.getEnvironment() |
Modifier and Type | Method and Description |
---|---|
protected void |
Configuration.doAutoImportsAndIncludes(Environment env) |
void |
TemplateDirectiveModel.execute(Environment env,
java.util.Map params,
TemplateModel[] loopVars,
TemplateDirectiveBody body)
Executes this user-defined directive; called by FreeMarker when the user-defined
directive is called in the template.
|
void |
TemplateExceptionHandler.handleTemplateException(TemplateException te,
Environment env,
java.io.Writer out)
Method called after a
TemplateException was raised inside a template. |
Constructor and Description |
---|
TemplateException(Environment env)
Constructs a TemplateException with no specified detail message
or underlying cause.
|
TemplateException(java.lang.Exception cause,
Environment env)
The same as
TemplateException.TemplateException(Throwable, Environment) ; it's exists only for binary
backward-compatibility. |
TemplateException(java.lang.String description,
Environment env)
Constructs a TemplateException with the given detail message,
but no underlying cause exception.
|
TemplateException(java.lang.String description,
java.lang.Exception cause,
Environment env)
The same as
TemplateException.TemplateException(String, Throwable, Environment) ; it's exists only for binary
backward-compatibility. |
TemplateException(java.lang.String description,
java.lang.Throwable cause,
Environment env)
Constructs a TemplateException with both a description of the error
that occurred and the underlying Exception that caused this exception
to be raised.
|
TemplateException(java.lang.Throwable cause,
Environment env,
freemarker.core._ErrorDescriptionBuilder descriptionBuilder,
boolean preventAmbiguity)
Don't use this; this is to be used internally by FreeMarker.
|
TemplateException(java.lang.Throwable cause,
Environment env)
Constructs a TemplateException with the given underlying Exception,
but no detail message.
|
TemplateModelException(java.lang.Throwable cause,
Environment env,
freemarker.core._ErrorDescriptionBuilder descriptionBuilder,
boolean preventAmbiguity)
Don't use this; this is to be used internally by FreeMarker.
|
TemplateModelException(java.lang.Throwable cause,
Environment env,
java.lang.String description,
boolean preventAmbiguity)
Don't use this; this is to be used internally by FreeMarker.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
StringUtil.matchesName(java.lang.String qname,
java.lang.String nodeName,
java.lang.String nsURI,
Environment env) |