类 MustacheView

  • 所有已实现的接口:
    org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanNameAware, org.springframework.beans.factory.InitializingBean, org.springframework.context.ApplicationContextAware, org.springframework.web.reactive.result.view.View

    public class MustacheView
    extends org.springframework.web.reactive.result.view.AbstractUrlBasedView
    Spring WebFlux View using the Mustache template engine.
    从以下版本开始:
    2.0.0
    • 字段概要

      • 从类继承的字段 org.springframework.web.reactive.result.view.AbstractView

        logger, REQUEST_DATA_VALUE_PROCESSOR_BEAN_NAME
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型方法说明
      booleancheckResourceExists​(Locale locale) 
      protected reactor.core.publisher.Mono<Void>renderInternal​(Map<String,​Object> model, org.springframework.http.MediaType contentType, org.springframework.web.server.ServerWebExchange exchange) 
      voidsetCharset​(String charset)
      Set the charset used for reading Mustache template files.
      voidsetCompiler​(com.samskivert.mustache.Mustache.Compiler compiler)
      Set the JMustache compiler to be used by this view.
      • 从类继承的方法 org.springframework.web.reactive.result.view.AbstractUrlBasedView

        afterPropertiesSet, getUrl, setUrl, toString
      • 从类继承的方法 org.springframework.web.reactive.result.view.AbstractView

        createRequestContext, formatViewName, getApplicationContext, getBeanName, getDefaultCharset, getModelAttributes, getRequestContextAttribute, getRequestDataValueProcessor, getSupportedMediaTypes, obtainApplicationContext, render, resolveAsyncAttributes, setApplicationContext, setBeanName, setDefaultCharset, setRequestContextAttribute, setSupportedMediaTypes
      • 从接口继承的方法 org.springframework.web.reactive.result.view.View

        isRedirectView
    • 方法详细资料

      • setCompiler

        public void setCompiler​(com.samskivert.mustache.Mustache.Compiler compiler)
        Set the JMustache compiler to be used by this view. Typically this property is not set directly. Instead a single Mustache.Compiler is expected in the Spring application context which is used to compile Mustache templates.
        参数:
        compiler - the Mustache compiler
      • setCharset

        public void setCharset​(String charset)
        Set the charset used for reading Mustache template files.
        参数:
        charset - the charset to use for reading template files
      • renderInternal

        protected reactor.core.publisher.Mono<VoidrenderInternal​(Map<String,​Object> model,
                                                                   org.springframework.http.MediaType contentType,
                                                                   org.springframework.web.server.ServerWebExchange exchange)
        指定者:
        renderInternal 在类中 org.springframework.web.reactive.result.view.AbstractView