Interface RenderingResponse
- All Superinterfaces:
ServerResponse
public interface RenderingResponse extends ServerResponse
Rendering-specific subtype ofServerResponsethat exposes model and template data.- Since:
- 5.0
- Author:
- Arjen Poutsma, Juergen Hoeller
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceRenderingResponse.BuilderDefines 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
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static RenderingResponse.Buildercreate(String name)Create a builder with the given template name.static RenderingResponse.Builderfrom(RenderingResponse other)Create a builder with the template name, status code, headers and model of the given response.Map<String,Object>model()Return the unmodifiable model map.Stringname()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 Detail
from
static RenderingResponse.Builder from(RenderingResponse other)
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
static RenderingResponse.Builder create(String name)
Create a builder with the given template name.- Parameters:
name- the name of the template to render- Returns:
- the created builder