SpringWebFlux offers a number of options for rendering views, using various technology platforms. Whatever choice we make, the framework employs the same view resolution process, allowing us to arrive at the correct view. The view can then be rendered by using any of the supported technologies. In this section, we will cover the complete process of rendering views using SpringWebFlux.
View templates
Resolving views
View resolution is a process used by the framework to determine which view needs to be rendered for a received request. The complete view resolution process enables us to render different views for the same requests, based on content parameters. Before we start to build different views, let's discuss how the...