Interface FragmentsRendering
Public API to render HTML fragments. A fragment is a portion of an HTML page.
Normally HTML is rendered with a single model and view. This API allows
using multiple model and view pairs, one for each HTML fragment.
For use with frontends technologies such as htmx where multiple page fragments may be rendered in one response.
Supported as a return value from controller methods.
- Since:
- 6.2
- Author:
- Rossen Stoyanchev
- 
Nested Class SummaryNested Classes
- 
Field SummaryFields inherited from interface ViewPATH_VARIABLES, RESPONSE_STATUS_ATTRIBUTE, SELECTED_CONTENT_TYPE
- 
Method SummaryModifier and TypeMethodDescriptionstatic FragmentsRendering.BuilderCreate a builder with one HTML fragment, also inheriting attributes from the shared model for the request.static FragmentsRendering.BuilderCreate a builder with one HTML fragment.static FragmentsRendering.Builderfragments(Collection<ModelAndView> fragments) Create a builder with multiple HTML fragments.headers()Return headers to add to the response.status()Return the HTTP status to set the response to.static FragmentsRendering.BuilderDeprecated, for removal: This API element is subject to removal in a future version.static FragmentsRendering.BuilderDeprecated, for removal: This API element is subject to removal in a future version.in favor offragment(String, Map)static FragmentsRendering.Builderwith(Collection<ModelAndView> fragments) Deprecated, for removal: This API element is subject to removal in a future version.in favor offragments(Collection)Methods inherited from interface SmartViewisRedirectView, resolveNestedViewsMethods inherited from interface ViewgetContentType, render
- 
Method Details- 
status@Nullable HttpStatusCode status()Return the HTTP status to set the response to.
- 
headersHttpHeaders headers()Return headers to add to the response.
- 
fragmentCreate a builder with one HTML fragment, also inheriting attributes from the shared model for the request.- Parameters:
- viewName- the name of the view for the fragment
- Returns:
- the created builder
- Since:
- 6.2.13
 
- 
fragmentCreate a builder with one HTML fragment.- Parameters:
- viewName- the view name for the fragment
- model- attributes for the fragment, in addition to attributes from the shared model for the request
- Returns:
- the created builder
- Since:
- 6.2.13
 
- 
fragmentsCreate a builder with multiple HTML fragments.- Parameters:
- fragments- the fragments to add; each fragment also inherits attributes from the shared model for the request
- Returns:
- the created builder
- Since:
- 6.2.13
 
- 
with@Deprecated(since="6.2.13", forRemoval=true) static FragmentsRendering.Builder with(String viewName, Map<String, Object> model) Deprecated, for removal: This API element is subject to removal in a future version.in favor offragment(String, Map)The same asfragment(String, Map).
- 
with@Deprecated(since="6.2.13", forRemoval=true) static FragmentsRendering.Builder with(String viewName) Deprecated, for removal: This API element is subject to removal in a future version.in favor offragment(String)The same asfragment(String).
- 
with@Deprecated(since="6.2.13", forRemoval=true) static FragmentsRendering.Builder with(Collection<ModelAndView> fragments) Deprecated, for removal: This API element is subject to removal in a future version.in favor offragments(Collection)The same asfragments(Collection).
 
- 
fragment(String)