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 a single
ScriptTemplateConfig bean in the web application context and using
it to obtain the configured properties.
The 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,
ScriptTemplateViewResolverlogger, REQUEST_DATA_VALUE_PROCESSOR_BEAN_NAMEBINDING_CONTEXT_ATTRIBUTE| Constructor and Description |
|---|
ScriptTemplateView()
Constructor for use as a bean.
|
ScriptTemplateView(String url)
Create a new ScriptTemplateView with the given URL.
|
afterPropertiesSet, getUrl, setUrl, toStringcreateRequestContext, formatViewName, getApplicationContext, getBeanName, getDefaultCharset, getModelAttributes, getRequestContextAttribute, getRequestDataValueProcessor, getSupportedMediaTypes, obtainApplicationContext, render, resolveAsyncAttributes, resolveAsyncAttributes, setBeanName, setDefaultCharset, setRequestContextAttribute, setSupportedMediaTypesclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitisRedirectViewpublic ScriptTemplateView()
public ScriptTemplateView(String url)
public void setEngine(ScriptEngine engine)
ScriptTemplateConfigurer.setEngine(ScriptEngine) documentation.public void setEngineSupplier(Supplier<ScriptEngine> engineSupplier)
ScriptTemplateConfigurer.setEngineSupplier(Supplier) documentation.public void setEngineName(String engineName)
ScriptTemplateConfigurer.setEngineName(String) documentation.public void setSharedEngine(Boolean sharedEngine)
ScriptTemplateConfigurer.setSharedEngine(Boolean) documentation.public void setScripts(String... scripts)
ScriptTemplateConfigurer.setScripts(String...) documentation.public void setRenderObject(String renderObject)
ScriptTemplateConfigurer.setRenderObject(String) documentation.public void setRenderFunction(String functionName)
ScriptTemplateConfigurer.setRenderFunction(String) documentation.public void setResourceLoaderPath(String resourceLoaderPath)
ScriptTemplateConfigurer.setResourceLoaderPath(String) documentation.public void setApplicationContext(@Nullable ApplicationContext context)
ApplicationContextAwareInvoked after population of normal bean properties but before an init callback such
as InitializingBean.afterPropertiesSet()
or a custom init-method. Invoked after ResourceLoaderAware.setResourceLoader(org.springframework.core.io.ResourceLoader),
ApplicationEventPublisherAware.setApplicationEventPublisher(org.springframework.context.ApplicationEventPublisher) and
MessageSourceAware, if applicable.
setApplicationContext in interface ApplicationContextAwaresetApplicationContext in class AbstractViewcontext - the ApplicationContext object to be used by this objectBeanInitializationExceptionprotected ScriptEngine getEngine()
protected ScriptEngine createEngineFromName(String engineName)
protected void loadScripts(ScriptEngine engine)
protected ScriptTemplateConfig autodetectViewConfig() throws BeansException
BeansExceptionpublic boolean checkResourceExists(Locale locale) throws Exception
AbstractUrlBasedViewcheckResourceExists in class AbstractUrlBasedViewlocale - the desired Locale that we're looking forfalse if the resource exists
false if we know that it does not existException - if the resource exists but is invalid (e.g. could not be parsed)protected reactor.core.publisher.Mono<Void> renderInternal(Map<String,Object> model, @Nullable MediaType contentType, ServerWebExchange exchange)
AbstractViewrenderInternal in class AbstractViewmodel - combined output Map (never null),
with dynamic values taking precedence over static attributescontentType - the content type selected to render with, which should
match one of the supported media typesexchange - current exchangeMono that represents when and if rendering succeedsprotected String getTemplate(String path) throws IOException
IOException