public class ScriptTemplateView extends AbstractUrlBasedView
AbstractUrlBasedView
subclass designed to run any template library
based on a JSR-223 script engine.
If not set, each property is auto-detected by looking up up a single
ScriptTemplateConfig
bean in the web application context and using
it to obtain the configured properties.
Nashorn Javascript engine requires Java 8+, and may require setting the
sharedEngine
property to false
in order to run properly. See
ScriptTemplateConfigurer.setSharedEngine(Boolean)
for more details.
ScriptTemplateConfigurer
,
ScriptTemplateViewResolver
Modifier and Type | Field and Description |
---|---|
private java.nio.charset.Charset |
charset |
private static java.nio.charset.Charset |
DEFAULT_CHARSET |
private static java.lang.String |
DEFAULT_RESOURCE_LOADER_PATH |
private javax.script.ScriptEngine |
engine |
private java.lang.ThreadLocal<javax.script.ScriptEngine> |
engineHolder |
private java.lang.String |
engineName |
private java.lang.String |
renderFunction |
private java.lang.String |
renderObject |
private ResourceLoader |
resourceLoader |
private java.lang.String |
resourceLoaderPath |
private java.lang.String[] |
scripts |
private java.lang.Boolean |
sharedEngine |
DEFAULT_CONTENT_TYPE
logger
PATH_VARIABLES, RESPONSE_STATUS_ATTRIBUTE, SELECTED_CONTENT_TYPE
Constructor and Description |
---|
ScriptTemplateView() |
Modifier and Type | Method and Description |
---|---|
protected ScriptTemplateConfig |
autodetectViewConfig() |
protected java.lang.ClassLoader |
createClassLoader() |
protected javax.script.ScriptEngine |
createEngineFromName() |
protected javax.script.ScriptEngine |
getEngine() |
protected java.lang.String |
getTemplate(java.lang.String path) |
protected void |
initApplicationContext(ApplicationContext context)
Calls
#initServletContext(javax.servlet.ServletContext) if the
given ApplicationContext is a WebApplicationContext . |
protected void |
loadScripts(javax.script.ScriptEngine engine) |
protected void |
renderMergedOutputModel(java.util.Map<java.lang.String,java.lang.Object> model,
HttpServletRequest request,
HttpServletResponse response)
Subclasses must implement this method to actually render the view.
|
void |
setCharset(java.nio.charset.Charset charset)
See
ScriptTemplateConfigurer.setCharset(Charset) documentation. |
void |
setEngine(javax.script.ScriptEngine engine)
See
ScriptTemplateConfigurer.setEngine(ScriptEngine) documentation. |
void |
setEngineName(java.lang.String engineName)
See
ScriptTemplateConfigurer.setEngineName(String) documentation. |
void |
setRenderFunction(java.lang.String functionName)
See
ScriptTemplateConfigurer.setRenderFunction(String) documentation. |
void |
setRenderObject(java.lang.String renderObject)
See
ScriptTemplateConfigurer.setRenderObject(String) documentation. |
void |
setResourceLoaderPath(java.lang.String resourceLoaderPath)
See
ScriptTemplateConfigurer.setResourceLoaderPath(String) documentation. |
void |
setScripts(java.lang.String... scripts)
See
ScriptTemplateConfigurer.setScripts(String...) documentation. |
void |
setSharedEngine(java.lang.Boolean sharedEngine)
See
ScriptTemplateConfigurer.setSharedEngine(Boolean) documentation. |
afterPropertiesSet, checkResource, getUrl, isUrlRequired, setUrl, toString
addStaticAttribute, createMergedOutputModel, createRequestContext, createTemporaryOutputStream, exposeModelAsRequestAttributes, generatesDownloadContent, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getRequestToExpose, getStaticAttributes, isExposePathVariables, prepareResponse, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setExposeContextBeansAsAttributes, setExposedContextBeanNames, setExposePathVariables, setRequestContextAttribute, setResponseContentType, writeToResponse
getServletContext, getTempDir, getWebApplicationContext, initServletContext, isContextRequired, setServletContext
getApplicationContext, getMessageSourceAccessor, initApplicationContext, requiredContextClass, setApplicationContext
private static final java.nio.charset.Charset DEFAULT_CHARSET
private static final java.lang.String DEFAULT_RESOURCE_LOADER_PATH
private final java.lang.ThreadLocal<javax.script.ScriptEngine> engineHolder
private javax.script.ScriptEngine engine
private java.lang.String engineName
private java.lang.Boolean sharedEngine
private java.lang.String[] scripts
private java.lang.String renderObject
private java.lang.String renderFunction
private java.nio.charset.Charset charset
private ResourceLoader resourceLoader
private java.lang.String resourceLoaderPath
public void setEngine(javax.script.ScriptEngine engine)
ScriptTemplateConfigurer.setEngine(ScriptEngine)
documentation.public void setEngineName(java.lang.String engineName)
ScriptTemplateConfigurer.setEngineName(String)
documentation.public void setSharedEngine(java.lang.Boolean sharedEngine)
ScriptTemplateConfigurer.setSharedEngine(Boolean)
documentation.public void setScripts(java.lang.String... scripts)
ScriptTemplateConfigurer.setScripts(String...)
documentation.public void setRenderObject(java.lang.String renderObject)
ScriptTemplateConfigurer.setRenderObject(String)
documentation.public void setRenderFunction(java.lang.String functionName)
ScriptTemplateConfigurer.setRenderFunction(String)
documentation.public void setCharset(java.nio.charset.Charset charset)
ScriptTemplateConfigurer.setCharset(Charset)
documentation.public void setResourceLoaderPath(java.lang.String resourceLoaderPath)
ScriptTemplateConfigurer.setResourceLoaderPath(String)
documentation.protected void initApplicationContext(ApplicationContext context)
WebApplicationObjectSupport
#initServletContext(javax.servlet.ServletContext)
if the
given ApplicationContext is a WebApplicationContext
.initApplicationContext
in class WebApplicationObjectSupport
context
- the containing ApplicationContextApplicationObjectSupport.setApplicationContext(org.springframework.context.ApplicationContext)
protected javax.script.ScriptEngine getEngine()
protected javax.script.ScriptEngine createEngineFromName()
protected void loadScripts(javax.script.ScriptEngine engine)
protected java.lang.ClassLoader createClassLoader()
protected ScriptTemplateConfig autodetectViewConfig() throws BeansException
BeansException
protected void renderMergedOutputModel(java.util.Map<java.lang.String,java.lang.Object> model, HttpServletRequest request, HttpServletResponse response) throws java.lang.Exception
AbstractView
The first step will be preparing the request: In the JSP case, this would mean setting model objects as request attributes. The second step will be the actual rendering of the view, for example including the JSP via a RequestDispatcher.
renderMergedOutputModel
in class AbstractView
model
- combined output Map (never null
),
with dynamic values taking precedence over static attributesrequest
- current HTTP requestresponse
- current HTTP responsejava.lang.Exception
- if rendering failedprotected java.lang.String getTemplate(java.lang.String path) throws java.io.IOException
java.io.IOException