Interface TemplateHandler
- All Superinterfaces:
Handler<RoutingContext>
A handler which renders responses using a template engine and where the template name is selected from the URI
path.
- Author:
- Tim Fox
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic TemplateHandlercreate(TemplateEngine engine) Create a handlerstatic TemplateHandlercreate(TemplateEngine engine, String templateDirectory, String contentType) Create a handlersetIndexTemplate(String indexTemplate) Set the index template
-
Field Details
-
DEFAULT_TEMPLATE_DIRECTORY
The default directory where templates will be looked for- See Also:
-
DEFAULT_CONTENT_TYPE
The default content type header to be used in the response- See Also:
-
DEFAULT_INDEX_TEMPLATE
-
-
Method Details
-
setIndexTemplate
Set the index template- Parameters:
indexTemplate- the index template- Returns:
- a reference to this, so the API can be used fluently
-
create
Create a handler- Parameters:
engine- the template engine- Returns:
- the handler
-
create
Create a handler- Parameters:
engine- the template enginetemplateDirectory- the template directory where templates will be looked forcontentType- the content type header to be used in the response- Returns:
- the handler
-