Uses of Interface
org.springframework.web.reactive.result.view.View
Packages that use View Package Description org.springframework.web.reactive.config Spring WebFlux configuration infrastructure.org.springframework.web.reactive.result.view Support for result handling through view resolution.org.springframework.web.reactive.result.view.freemarker Support classes for the integration of FreeMarker as Spring web view technology.org.springframework.web.reactive.result.view.script Support classes for views based on the JSR-223 script engine abstraction (as included in Java 6+), e.g.Uses of View in org.springframework.web.reactive.config
Methods in org.springframework.web.reactive.config that return types with arguments of type View Modifier and Type Method Description protected List<View>ViewResolverRegistry. getDefaultViews()Methods in org.springframework.web.reactive.config with parameters of type View Modifier and Type Method Description voidViewResolverRegistry. defaultViews(View... defaultViews)Set default views associated with any view name and selected based on the best match for the requested content type.Uses of View in org.springframework.web.reactive.result.view
Classes in org.springframework.web.reactive.result.view that implement View Modifier and Type Class Description classAbstractUrlBasedViewAbstract base class for URL-based views.classAbstractViewBase class forViewimplementations.classHttpMessageWriterViewViewthat writes model attribute(s) with anHttpMessageWriter.classRedirectViewView that redirects to an absolute or context relative URL.Methods in org.springframework.web.reactive.result.view that return View Modifier and Type Method Description protected ViewUrlBasedViewResolver. applyLifecycleMethods(String viewName, AbstractUrlBasedView view)Apply the containingApplicationContext's lifecycle methods to the givenViewinstance, if such a context is available.Methods in org.springframework.web.reactive.result.view that return types with arguments of type View Modifier and Type Method Description List<View>ViewResolutionResultHandler. getDefaultViews()Return the configured defaultView's.reactor.core.publisher.Mono<View>UrlBasedViewResolver. resolveViewName(String viewName, Locale locale)reactor.core.publisher.Mono<View>ViewResolver. resolveViewName(String viewName, Locale locale)Resolve the view name to a View instance.Method parameters in org.springframework.web.reactive.result.view with type arguments of type View Modifier and Type Method Description voidViewResolutionResultHandler. setDefaultViews(List<View> defaultViews)Set the default views to consider always when resolving view names and trying to satisfy the best matching content type.Uses of View in org.springframework.web.reactive.result.view.freemarker
Classes in org.springframework.web.reactive.result.view.freemarker that implement View Modifier and Type Class Description classFreeMarkerViewAViewimplementation that uses the FreeMarker template engine.Uses of View in org.springframework.web.reactive.result.view.script
Classes in org.springframework.web.reactive.result.view.script that implement View Modifier and Type Class Description classScriptTemplateViewAnAbstractUrlBasedViewsubclass designed to run any template library based on a JSR-223 script engine.