Interface RenderingResponse
- All Superinterfaces:
ServerResponse
Rendering-specific subtype of
ServerResponse
that exposes model and template data.- Since:
- 5.0
- Author:
- Arjen Poutsma, Juergen Hoeller
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Defines a builder forRenderingResponse
.Nested classes/interfaces inherited from interface org.springframework.web.reactive.function.server.ServerResponse
ServerResponse.BodyBuilder, ServerResponse.Context, ServerResponse.HeadersBuilder<B extends ServerResponse.HeadersBuilder<B>>
-
Method Summary
Modifier and TypeMethodDescriptionstatic RenderingResponse.Builder
Create a builder with the given template name.static RenderingResponse.Builder
from
(RenderingResponse other) Create a builder with the template name, status code, headers and model of the given response.model()
Return the unmodifiable model map.name()
Return the name of the template to be rendered.Methods inherited from interface org.springframework.web.reactive.function.server.ServerResponse
cookies, headers, rawStatusCode, statusCode, writeTo
-
Method Details
-
name
String name()Return the name of the template to be rendered. -
model
Return the unmodifiable model map. -
from
Create a builder with the template name, status code, headers and model of the given response.- Parameters:
other
- the response to copy the values from- Returns:
- the created builder
-
create
Create a builder with the given template name.- Parameters:
name
- the name of the template to render- Returns:
- the created builder
-