Example usage for org.springframework.boot.web.servlet.filter OrderedFormContentFilter OrderedFormContentFilter

List of usage examples for org.springframework.boot.web.servlet.filter OrderedFormContentFilter OrderedFormContentFilter

Introduction

In this page you can find the example usage for org.springframework.boot.web.servlet.filter OrderedFormContentFilter OrderedFormContentFilter.

Prototype

OrderedFormContentFilter

Source Link

Usage

From source file:org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.java

@Bean
@ConditionalOnMissingBean(FormContentFilter.class)
@ConditionalOnProperty(prefix = "spring.mvc.formcontent.filter", name = "enabled", matchIfMissing = true)
public OrderedFormContentFilter formContentFilter() {
    return new OrderedFormContentFilter();
}