Package groovy.text.markup
Class MarkupTemplateEngine.CachingTemplateResolver
java.lang.Object
groovy.text.markup.MarkupTemplateEngine.DefaultTemplateResolver
groovy.text.markup.MarkupTemplateEngine.CachingTemplateResolver
- All Implemented Interfaces:
TemplateResolver
- Enclosing class:
- MarkupTemplateEngine
public static class MarkupTemplateEngine.CachingTemplateResolver
extends MarkupTemplateEngine.DefaultTemplateResolver
A template resolver which avoids calling
ClassLoader.getResource(String)
if a template path already has
been queried before. This improves performance if caching is enabled in the configuration.-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreates a new caching template resolver using a concurrent hash map as the backing cache.CachingTemplateResolver
(Map<String, URL> cache) Creates a new caching template resolver. -
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(ClassLoader templateClassLoader, TemplateConfiguration configuration) This method is called once the template engine is initialized, providing the resolver with the template engine configuration and its template class loader.resolveTemplate
(String templatePath) Resolvers must implement this method in order to resolve a template, given a template path.
-
Field Details
-
cache
-
useCache
protected boolean useCache
-
-
Constructor Details
-
CachingTemplateResolver
Creates a new caching template resolver. The cache implementation being used depends on the use of the template engine. If multiple templates can be rendered in parallel, it must be using a thread-safe cache.- Parameters:
cache
- the backing cache
-
CachingTemplateResolver
public CachingTemplateResolver()Creates a new caching template resolver using a concurrent hash map as the backing cache.
-
-
Method Details
-
configure
Description copied from interface:TemplateResolver
This method is called once the template engine is initialized, providing the resolver with the template engine configuration and its template class loader.- Specified by:
configure
in interfaceTemplateResolver
- Overrides:
configure
in classMarkupTemplateEngine.DefaultTemplateResolver
- Parameters:
templateClassLoader
- the classloader where templates will be searched forconfiguration
- the configuration of the template engine
-
resolveTemplate
Description copied from interface:TemplateResolver
Resolvers must implement this method in order to resolve a template, given a template path. They must return a valid URL or an IOException.- Specified by:
resolveTemplate
in interfaceTemplateResolver
- Overrides:
resolveTemplate
in classMarkupTemplateEngine.DefaultTemplateResolver
- Parameters:
templatePath
- path to the template- Returns:
- the template URL, that will be used to load the template
- Throws:
IOException
-