Package | Description |
---|---|
freemarker.cache |
Template loading and caching.
|
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.) |
Modifier and Type | Interface and Description |
---|---|
interface |
StatefulTemplateLoader
Interface that can be implemented by template loaders that maintain some
sort of internal state (i.e.
|
Modifier and Type | Class and Description |
---|---|
class |
ClassTemplateLoader
A
TemplateLoader that uses streams reachable through
Class.getResourceAsStream(String) as its source of templates. |
class |
FileTemplateLoader
A
TemplateLoader that uses files in a specified directory as the
source of templates. |
class |
MultiTemplateLoader
A
TemplateLoader that uses a set of other loaders to load the templates. |
class |
StringTemplateLoader
A
TemplateLoader that uses a Map with Strings as its source of
templates. |
class |
URLTemplateLoader
This is an abstract template loader that can load templates whose
location can be described by an URL.
|
class |
WebappTemplateLoader
A
TemplateLoader that uses streams reachable through
ServletContext.getResource(String) as its source of templates. |
Modifier and Type | Method and Description |
---|---|
TemplateLoader |
TemplateCache.getTemplateLoader() |
Constructor and Description |
---|
MultiTemplateLoader(TemplateLoader[] loaders)
Creates a new multi template Loader that will use the specified loaders.
|
TemplateCache(TemplateLoader templateLoader)
Creates a new template cache with a custom template loader that is used
to load the templates.
|
TemplateCache(TemplateLoader templateLoader,
CacheStorage cacheStorage)
Creates a new template cache with a custom template loader that is used
to load the templates.
|
Modifier and Type | Method and Description |
---|---|
protected TemplateLoader |
FreemarkerServlet.createTemplateLoader(String templatePath)
Create the template loader.
|
Modifier and Type | Method and Description |
---|---|
TemplateLoader |
Configuration.getTemplateLoader()
The getter pair of
Configuration.setTemplateLoader(TemplateLoader) . |
Modifier and Type | Method and Description |
---|---|
void |
Configuration.setTemplateLoader(TemplateLoader loader)
Sets a
TemplateLoader that is used to look up and load templates. |