接口 TemplateAvailabilityProvider
- 所有已知实现类:
FreeMarkerTemplateAvailabilityProvider
,GroovyTemplateAvailabilityProvider
,JspTemplateAvailabilityProvider
,MustacheTemplateAvailabilityProvider
,PathBasedTemplateAvailabilityProvider
,ThymeleafTemplateAvailabilityProvider
- 函数接口:
- 这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。
Indicates the availability of view templates for a particular templating engine such as
FreeMarker or Thymeleaf.
- 从以下版本开始:
- 1.1.0
- 作者:
- Andy Wilkinson
-
方法概要
修饰符和类型方法说明boolean
isTemplateAvailable
(String view, Environment environment, ClassLoader classLoader, ResourceLoader resourceLoader) Returnstrue
if a template is available for the givenview
.
-
方法详细资料
-
isTemplateAvailable
boolean isTemplateAvailable(String view, Environment environment, ClassLoader classLoader, ResourceLoader resourceLoader) Returnstrue
if a template is available for the givenview
.- 参数:
view
- the view nameenvironment
- the environmentclassLoader
- the class loaderresourceLoader
- the resource loader- 返回:
- if the template is available
-