Class RedirectAttributesMethodArgumentResolver

java.lang.Object
org.springframework.web.servlet.mvc.method.annotation.RedirectAttributesMethodArgumentResolver
All Implemented Interfaces:
HandlerMethodArgumentResolver

public class RedirectAttributesMethodArgumentResolver extends Object implements HandlerMethodArgumentResolver
Resolves method arguments of type RedirectAttributes.

This resolver must be listed ahead of ModelMethodProcessor and MapMethodProcessor, which support Map and Model arguments both of which are "super" types of RedirectAttributes and would also attempt to resolve a RedirectAttributes argument.

Since:
3.1
Author:
Rossen Stoyanchev