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

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

Introduction

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

Prototype

OrderedHiddenHttpMethodFilter

Source Link

Usage

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

@Bean
@ConditionalOnMissingBean(HiddenHttpMethodFilter.class)
@ConditionalOnProperty(prefix = "spring.mvc.hiddenmethod.filter", name = "enabled", matchIfMissing = true)
public OrderedHiddenHttpMethodFilter hiddenHttpMethodFilter() {
    return new OrderedHiddenHttpMethodFilter();
}