Merge branch '2.0.x'
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<name>Spring Boot Build</name>
|
||||
<description>Spring Boot Build</description>
|
||||
<properties>
|
||||
<main.basedir>${basedir}/../..</main.basedir>
|
||||
<main.basedir>${basedir}/..</main.basedir>
|
||||
</properties>
|
||||
<modules>
|
||||
<module>spring-boot-dependencies</module>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
</developer>
|
||||
</developers>
|
||||
<properties>
|
||||
<main.basedir>${basedir}/../..</main.basedir>
|
||||
<!-- Dependency versions -->
|
||||
<activemq.version>5.15.6</activemq.version>
|
||||
<antlr2.version>2.7.7</antlr2.version>
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
<description>Parent pom providing dependency and plugin management for applications
|
||||
built with Maven</description>
|
||||
<properties>
|
||||
<main.basedir>${basedir}/../../..</main.basedir>
|
||||
<java.version>1.8</java.version>
|
||||
<resource.delimiter>@</resource.delimiter> <!-- delimiter that doesn't clash with Spring ${} placeholders -->
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
|
||||
package org.springframework.boot.web.reactive.filter;
|
||||
|
||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
||||
import org.springframework.core.Ordered;
|
||||
import org.springframework.web.filter.reactive.HiddenHttpMethodFilter;
|
||||
|
||||
@@ -32,8 +31,7 @@ public class OrderedHiddenHttpMethodFilter extends HiddenHttpMethodFilter
|
||||
/**
|
||||
* The default order is high to ensure the filter is applied before Spring Security.
|
||||
*/
|
||||
public static final int DEFAULT_ORDER = FilterRegistrationBean.REQUEST_WRAPPER_FILTER_MAX_ORDER
|
||||
- 10000;
|
||||
public static final int DEFAULT_ORDER = -10000;
|
||||
|
||||
private int order = DEFAULT_ORDER;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user