Uses of Class
org.apache.velocity.exception.ResourceNotFoundException
-
-
Uses of ResourceNotFoundException in org.apache.velocity
Methods in org.apache.velocity that throw ResourceNotFoundException Modifier and Type Method Description void
Template. merge(Context context, Writer writer)
The AST node structure is merged with the context to produce the final output.void
Template. merge(Context context, Writer writer, List<String> macroLibraries)
The AST node structure is merged with the context to produce the final output.boolean
Template. process()
gets the named resource as a stream, parses and inits -
Uses of ResourceNotFoundException in org.apache.velocity.app
Methods in org.apache.velocity.app that throw ResourceNotFoundException Modifier and Type Method Description static boolean
Velocity. evaluate(Context context, Writer writer, String logTag, Reader reader)
Renders the input reader using the context into the output writer.static boolean
Velocity. evaluate(Context context, Writer out, String logTag, String instring)
renders the input string using the context into the output writer.boolean
VelocityEngine. evaluate(Context context, Writer writer, String logTag, Reader reader)
Renders the input reader using the context into the output writer.boolean
VelocityEngine. evaluate(Context context, Writer out, String logTag, String instring)
renders the input string using the context into the output writer.static Template
Velocity. getTemplate(String name)
Returns aTemplate
from the Velocity resource management system.static Template
Velocity. getTemplate(String name, String encoding)
Returns aTemplate
from the Velocity resource management system.Template
VelocityEngine. getTemplate(String name)
Returns aTemplate
from the Velocity resource management system.Template
VelocityEngine. getTemplate(String name, String encoding)
Returns aTemplate
from the Velocity resource management system.static boolean
Velocity. mergeTemplate(String templateName, String encoding, Context context, Writer writer)
Merges a template and puts the rendered stream into the writerboolean
VelocityEngine. mergeTemplate(String templateName, String encoding, Context context, Writer writer)
merges a template and puts the rendered stream into the writer -
Uses of ResourceNotFoundException in org.apache.velocity.runtime
Methods in org.apache.velocity.runtime that throw ResourceNotFoundException Modifier and Type Method Description ContentResource
RuntimeInstance. getContent(String name)
Returns a static content resource from the resource manager.ContentResource
RuntimeInstance. getContent(String name, String encoding)
Returns a static content resource from the resource manager.ContentResource
RuntimeServices. getContent(String name)
Returns a static content resource from the resource manager.ContentResource
RuntimeServices. getContent(String name, String encoding)
Returns a static content resource from the resource manager.static ContentResource
RuntimeSingleton. getContent(String name)
Returns a static content resource from the resource manager.static ContentResource
RuntimeSingleton. getContent(String name, String encoding)
Returns a static content resource from the resource manager.Template
RuntimeInstance. getTemplate(String name)
Returns aTemplate
from the resource manager.Template
RuntimeInstance. getTemplate(String name, String encoding)
Returns aTemplate
from the resource managerTemplate
RuntimeServices. getTemplate(String name)
Returns aTemplate
from the resource manager.Template
RuntimeServices. getTemplate(String name, String encoding)
Returns aTemplate
from the resource managerstatic Template
RuntimeSingleton. getTemplate(String name)
Returns aTemplate
from the resource manager.static Template
RuntimeSingleton. getTemplate(String name, String encoding)
Returns aTemplate
from the resource managerboolean
Renderable. render(InternalContextAdapter context, Writer writer)
-
Uses of ResourceNotFoundException in org.apache.velocity.runtime.directive
Methods in org.apache.velocity.runtime.directive that throw ResourceNotFoundException Modifier and Type Method Description protected Resource
Include. getResource(String path, String encoding)
Find the resource to includeprotected Template
Parse. getTemplate(String path, String encoding)
Find the template to render in the appropriate encodingabstract boolean
Directive. render(InternalContextAdapter context, Writer writer, Node node)
How this directive is to be renderedboolean
Evaluate. render(InternalContextAdapter context, Writer writer, Node node)
Evaluate the argument, convert to a String, and evaluate again (with the same context).boolean
Include. render(InternalContextAdapter context, Writer writer, Node node)
iterates through the argument list and renders every argument that is appropriate.boolean
Parse. render(InternalContextAdapter context, Writer writer, Node node)
iterates through the argument list and renders every argument that is appropriate.boolean
RuntimeMacro. render(InternalContextAdapter context, Writer writer, Node node)
Velocimacro implementation is not known at the init time.boolean
RuntimeMacro. render(InternalContextAdapter context, Writer writer, Node node, Renderable body)
This method is used with BlockMacro when we want to render a macro with a body AST. -
Uses of ResourceNotFoundException in org.apache.velocity.runtime.parser.node
Methods in org.apache.velocity.runtime.parser.node that throw ResourceNotFoundException Modifier and Type Method Description boolean
ASTBlock. render(InternalContextAdapter context, Writer writer)
boolean
ASTComment. render(InternalContextAdapter context, Writer writer)
boolean
ASTDirective. render(InternalContextAdapter context, Writer writer)
boolean
ASTElseIfStatement. render(InternalContextAdapter context, Writer writer)
boolean
ASTIfStatement. render(InternalContextAdapter context, Writer writer)
boolean
Node. render(InternalContextAdapter context, Writer writer)
boolean
SimpleNode. render(InternalContextAdapter context, Writer writer)
-
Uses of ResourceNotFoundException in org.apache.velocity.runtime.resource
Methods in org.apache.velocity.runtime.resource that throw ResourceNotFoundException Modifier and Type Method Description Resource
ResourceManager. getResource(String resourceName, int resourceType, String encoding)
Gets the named resource.Resource
ResourceManagerImpl. getResource(String resourceName, int resourceType, String encoding)
Gets the named resource.protected Resource
ResourceManagerImpl. loadResource(String resourceName, int resourceType, String encoding)
Loads a resource from the current set of resource loaders.boolean
ContentResource. process()
Pull in static content and store it.abstract boolean
Resource. process()
Perform any subsequent processing that might need to be done by a resource.protected Resource
ResourceManagerImpl. refreshResource(Resource resource, String encoding)
Takes an existing resource, and 'refreshes' it. -
Uses of ResourceNotFoundException in org.apache.velocity.runtime.resource.loader
Methods in org.apache.velocity.runtime.resource.loader that throw ResourceNotFoundException Modifier and Type Method Description InputStream
JarHolder. getResource(String theentry)
Reader
ClasspathResourceLoader. getResourceReader(String name, String encoding)
Get a Reader so that the Runtime can build a template with it.Reader
DataSourceResourceLoader. getResourceReader(String name, String encoding)
Get an InputStream so that the Runtime can build a template with it.Reader
FileResourceLoader. getResourceReader(String templateName, String encoding)
Get a Reader so that the Runtime can build a template with it.Reader
JarResourceLoader. getResourceReader(String source, String encoding)
Get a Reader so that the Runtime can build a template with it.abstract Reader
ResourceLoader. getResourceReader(String source, String encoding)
Get the Reader that the Runtime will parse to create a template.Reader
StringResourceLoader. getResourceReader(String name, String encoding)
Get a reader so that the Runtime can build a template with it.Reader
URLResourceLoader. getResourceReader(String name, String encoding)
Get a Reader so that the Runtime can build a template with it. -
Uses of ResourceNotFoundException in org.apache.velocity.script
Methods in org.apache.velocity.script that throw ResourceNotFoundException Modifier and Type Method Description Reader
VelocityScriptEngine.SingleResourceReader. getResourceReader(String source, String encoding)
-
Uses of ResourceNotFoundException in org.apache.velocity.spring
Methods in org.apache.velocity.spring that throw ResourceNotFoundException Modifier and Type Method Description Reader
SpringResourceLoader. getResourceReader(String source, String encoding)
Get the Reader that the Runtime will parse to create a template.
-