Move Servlet Filters into spring-boot-servlet
Closes gh-46151
This commit is contained in:
parent
bcb9a5aa5c
commit
ff73a4d0bb
|
@ -27,14 +27,14 @@ import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoCon
|
||||||
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConvertersAutoConfiguration;
|
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConvertersAutoConfiguration;
|
||||||
import org.springframework.boot.security.autoconfigure.servlet.SecurityAutoConfiguration;
|
import org.springframework.boot.security.autoconfigure.servlet.SecurityAutoConfiguration;
|
||||||
import org.springframework.boot.servlet.autoconfigure.HttpEncodingAutoConfiguration;
|
import org.springframework.boot.servlet.autoconfigure.HttpEncodingAutoConfiguration;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedCharacterEncodingFilter;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedRequestContextFilter;
|
||||||
import org.springframework.boot.session.autoconfigure.SessionAutoConfiguration;
|
import org.springframework.boot.session.autoconfigure.SessionAutoConfiguration;
|
||||||
import org.springframework.boot.test.util.TestPropertyValues;
|
import org.springframework.boot.test.util.TestPropertyValues;
|
||||||
import org.springframework.boot.web.server.WebServerFactoryCustomizerBeanPostProcessor;
|
import org.springframework.boot.web.server.WebServerFactoryCustomizerBeanPostProcessor;
|
||||||
import org.springframework.boot.web.server.servlet.MockServletWebServer.RegisteredFilter;
|
import org.springframework.boot.web.server.servlet.MockServletWebServer.RegisteredFilter;
|
||||||
import org.springframework.boot.web.server.servlet.MockServletWebServerFactory;
|
import org.springframework.boot.web.server.servlet.MockServletWebServerFactory;
|
||||||
import org.springframework.boot.web.server.servlet.context.AnnotationConfigServletWebServerApplicationContext;
|
import org.springframework.boot.web.server.servlet.context.AnnotationConfigServletWebServerApplicationContext;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter;
|
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter;
|
|
||||||
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfiguration;
|
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfiguration;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
|
@ -35,6 +35,7 @@ dependencies {
|
||||||
optional("org.springframework:spring-webflux")
|
optional("org.springframework:spring-webflux")
|
||||||
optional("jakarta.servlet:jakarta.servlet-api")
|
optional("jakarta.servlet:jakarta.servlet-api")
|
||||||
|
|
||||||
|
testImplementation(project(":spring-boot-project:spring-boot-servlet"))
|
||||||
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
testImplementation(project(":spring-boot-project:spring-boot-test"))
|
||||||
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
testImplementation(project(":spring-boot-project:spring-boot-tools:spring-boot-test-support"))
|
||||||
|
|
||||||
|
|
|
@ -28,11 +28,11 @@ import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
|
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
|
||||||
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration;
|
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedCharacterEncodingFilter;
|
||||||
import org.springframework.boot.test.util.TestPropertyValues;
|
import org.springframework.boot.test.util.TestPropertyValues;
|
||||||
import org.springframework.boot.testsupport.classpath.resources.WithResource;
|
import org.springframework.boot.testsupport.classpath.resources.WithResource;
|
||||||
import org.springframework.boot.web.context.servlet.AnnotationConfigServletWebApplicationContext;
|
import org.springframework.boot.web.context.servlet.AnnotationConfigServletWebApplicationContext;
|
||||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.context.annotation.Import;
|
import org.springframework.context.annotation.Import;
|
||||||
|
|
|
@ -23,8 +23,8 @@ import java.util.Set;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedFilter;
|
||||||
import org.springframework.boot.web.servlet.DispatcherType;
|
import org.springframework.boot.web.servlet.DispatcherType;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedFilter;
|
|
||||||
import org.springframework.core.Ordered;
|
import org.springframework.core.Ordered;
|
||||||
import org.springframework.util.StringUtils;
|
import org.springframework.util.StringUtils;
|
||||||
|
|
||||||
|
|
|
@ -37,11 +37,11 @@ import org.springframework.boot.convert.ApplicationConversionService;
|
||||||
import org.springframework.boot.jdbc.autoconfigure.DataSourceAutoConfiguration;
|
import org.springframework.boot.jdbc.autoconfigure.DataSourceAutoConfiguration;
|
||||||
import org.springframework.boot.jpa.autoconfigure.hibernate.HibernateJpaAutoConfiguration;
|
import org.springframework.boot.jpa.autoconfigure.hibernate.HibernateJpaAutoConfiguration;
|
||||||
import org.springframework.boot.security.autoconfigure.jpa.City;
|
import org.springframework.boot.security.autoconfigure.jpa.City;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedFilter;
|
||||||
import org.springframework.boot.test.context.FilteredClassLoader;
|
import org.springframework.boot.test.context.FilteredClassLoader;
|
||||||
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
||||||
import org.springframework.boot.testsupport.classpath.resources.WithResource;
|
import org.springframework.boot.testsupport.classpath.resources.WithResource;
|
||||||
import org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean;
|
import org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedFilter;
|
|
||||||
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfiguration;
|
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfiguration;
|
||||||
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
import org.springframework.boot.web.servlet.filter.ApplicationContextHeaderFilter;
|
import org.springframework.boot.servlet.filter.ApplicationContextHeaderFilter;
|
||||||
import org.springframework.context.ApplicationContext;
|
import org.springframework.context.ApplicationContext;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
|
@ -23,7 +23,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter;
|
import org.springframework.boot.servlet.filter.OrderedCharacterEncodingFilter;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.web.filter.CharacterEncodingFilter;
|
import org.springframework.web.filter.CharacterEncodingFilter;
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ import org.springframework.web.filter.OncePerRequestFilter;
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @author Venil Noronha
|
* @author Venil Noronha
|
||||||
* @since 2.0.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public class ApplicationContextHeaderFilter extends OncePerRequestFilter {
|
public class ApplicationContextHeaderFilter extends OncePerRequestFilter {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
||||||
|
|
||||||
import org.springframework.core.Ordered;
|
import org.springframework.core.Ordered;
|
||||||
import org.springframework.web.filter.CharacterEncodingFilter;
|
import org.springframework.web.filter.CharacterEncodingFilter;
|
||||||
|
@ -23,7 +23,7 @@ import org.springframework.web.filter.CharacterEncodingFilter;
|
||||||
* {@link CharacterEncodingFilter} that also implements {@link Ordered}.
|
* {@link CharacterEncodingFilter} that also implements {@link Ordered}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @since 2.0.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public class OrderedCharacterEncodingFilter extends CharacterEncodingFilter implements OrderedFilter {
|
public class OrderedCharacterEncodingFilter extends CharacterEncodingFilter implements OrderedFilter {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
||||||
|
|
||||||
import jakarta.servlet.Filter;
|
import jakarta.servlet.Filter;
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ import org.springframework.core.Ordered;
|
||||||
* An {@link Ordered} {@link jakarta.servlet.Filter}.
|
* An {@link Ordered} {@link jakarta.servlet.Filter}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @since 2.1.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public interface OrderedFilter extends Filter, Ordered {
|
public interface OrderedFilter extends Filter, Ordered {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
||||||
|
|
||||||
import org.springframework.core.Ordered;
|
import org.springframework.core.Ordered;
|
||||||
import org.springframework.web.filter.FormContentFilter;
|
import org.springframework.web.filter.FormContentFilter;
|
||||||
|
@ -24,7 +24,7 @@ import org.springframework.web.filter.FormContentFilter;
|
||||||
*
|
*
|
||||||
* @author Joao Pedro Evangelista
|
* @author Joao Pedro Evangelista
|
||||||
* @author Brian Clozel
|
* @author Brian Clozel
|
||||||
* @since 2.1.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public class OrderedFormContentFilter extends FormContentFilter implements OrderedFilter {
|
public class OrderedFormContentFilter extends FormContentFilter implements OrderedFilter {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
||||||
|
|
||||||
import org.springframework.core.Ordered;
|
import org.springframework.core.Ordered;
|
||||||
import org.springframework.web.filter.HiddenHttpMethodFilter;
|
import org.springframework.web.filter.HiddenHttpMethodFilter;
|
||||||
|
@ -23,7 +23,7 @@ import org.springframework.web.filter.HiddenHttpMethodFilter;
|
||||||
* {@link HiddenHttpMethodFilter} that also implements {@link Ordered}.
|
* {@link HiddenHttpMethodFilter} that also implements {@link Ordered}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @since 2.0.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public class OrderedHiddenHttpMethodFilter extends HiddenHttpMethodFilter implements OrderedFilter {
|
public class OrderedHiddenHttpMethodFilter extends HiddenHttpMethodFilter implements OrderedFilter {
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
||||||
|
|
||||||
import org.springframework.core.Ordered;
|
import org.springframework.core.Ordered;
|
||||||
import org.springframework.web.filter.RequestContextFilter;
|
import org.springframework.web.filter.RequestContextFilter;
|
||||||
|
@ -23,7 +23,7 @@ import org.springframework.web.filter.RequestContextFilter;
|
||||||
* {@link RequestContextFilter} that also implements {@link Ordered}.
|
* {@link RequestContextFilter} that also implements {@link Ordered}.
|
||||||
*
|
*
|
||||||
* @author Phillip Webb
|
* @author Phillip Webb
|
||||||
* @since 2.0.0
|
* @since 4.0.0
|
||||||
*/
|
*/
|
||||||
public class OrderedRequestContextFilter extends RequestContextFilter implements OrderedFilter {
|
public class OrderedRequestContextFilter extends RequestContextFilter implements OrderedFilter {
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
/**
|
/**
|
||||||
* Spring Boot specific {@link jakarta.servlet.Filter} implementations.
|
* Spring Boot specific {@link jakarta.servlet.Filter} implementations.
|
||||||
*/
|
*/
|
||||||
package org.springframework.boot.web.servlet.filter;
|
package org.springframework.boot.servlet.filter;
|
|
@ -24,10 +24,10 @@ import org.junit.jupiter.api.AfterEach;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
|
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedFormContentFilter;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedHiddenHttpMethodFilter;
|
||||||
import org.springframework.boot.test.util.TestPropertyValues;
|
import org.springframework.boot.test.util.TestPropertyValues;
|
||||||
import org.springframework.boot.web.context.servlet.AnnotationConfigServletWebApplicationContext;
|
import org.springframework.boot.web.context.servlet.AnnotationConfigServletWebApplicationContext;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedFormContentFilter;
|
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedHiddenHttpMethodFilter;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.core.annotation.AnnotationAwareOrderComparator;
|
import org.springframework.core.annotation.AnnotationAwareOrderComparator;
|
||||||
|
|
|
@ -44,6 +44,7 @@ import org.thymeleaf.templateresolver.ITemplateResolver;
|
||||||
import org.thymeleaf.web.servlet.JakartaServletWebApplication;
|
import org.thymeleaf.web.servlet.JakartaServletWebApplication;
|
||||||
|
|
||||||
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
import org.springframework.boot.autoconfigure.AutoConfigurations;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedCharacterEncodingFilter;
|
||||||
import org.springframework.boot.test.context.FilteredClassLoader;
|
import org.springframework.boot.test.context.FilteredClassLoader;
|
||||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
|
||||||
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
||||||
|
@ -51,7 +52,6 @@ import org.springframework.boot.test.system.CapturedOutput;
|
||||||
import org.springframework.boot.test.system.OutputCaptureExtension;
|
import org.springframework.boot.test.system.OutputCaptureExtension;
|
||||||
import org.springframework.boot.testsupport.classpath.resources.WithResource;
|
import org.springframework.boot.testsupport.classpath.resources.WithResource;
|
||||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedCharacterEncodingFilter;
|
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.mock.web.MockHttpServletRequest;
|
import org.springframework.mock.web.MockHttpServletRequest;
|
||||||
|
|
|
@ -24,11 +24,11 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
|
||||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
|
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedRequestContextFilter;
|
||||||
import org.springframework.boot.web.error.ErrorPage;
|
import org.springframework.boot.web.error.ErrorPage;
|
||||||
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
|
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
|
||||||
import org.springframework.boot.web.server.autoconfigure.ServerProperties;
|
import org.springframework.boot.web.server.autoconfigure.ServerProperties;
|
||||||
import org.springframework.boot.web.server.servlet.ConfigurableServletWebServerFactory;
|
import org.springframework.boot.web.server.servlet.ConfigurableServletWebServerFactory;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter;
|
|
||||||
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletAutoConfiguration;
|
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletAutoConfiguration;
|
||||||
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletRegistrationBean;
|
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletRegistrationBean;
|
||||||
import org.springframework.boot.webmvc.error.ErrorAttributes;
|
import org.springframework.boot.webmvc.error.ErrorAttributes;
|
||||||
|
|
|
@ -52,11 +52,11 @@ import org.springframework.boot.autoconfigure.web.format.WebConversionService;
|
||||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||||
import org.springframework.boot.convert.ApplicationConversionService;
|
import org.springframework.boot.convert.ApplicationConversionService;
|
||||||
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConverters;
|
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConverters;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedFormContentFilter;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedHiddenHttpMethodFilter;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedRequestContextFilter;
|
||||||
import org.springframework.boot.validation.autoconfigure.ValidatorAdapter;
|
import org.springframework.boot.validation.autoconfigure.ValidatorAdapter;
|
||||||
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedFormContentFilter;
|
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedHiddenHttpMethodFilter;
|
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter;
|
|
||||||
import org.springframework.boot.webmvc.autoconfigure.WebMvcProperties.Format;
|
import org.springframework.boot.webmvc.autoconfigure.WebMvcProperties.Format;
|
||||||
import org.springframework.context.ApplicationContext;
|
import org.springframework.context.ApplicationContext;
|
||||||
import org.springframework.context.ResourceLoaderAware;
|
import org.springframework.context.ResourceLoaderAware;
|
||||||
|
|
|
@ -18,8 +18,8 @@ package org.springframework.boot.webmvc.actuate.autoconfigure.web;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedRequestContextFilter;
|
||||||
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter;
|
|
||||||
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath;
|
import org.springframework.boot.webmvc.autoconfigure.DispatcherServletPath;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
|
@ -48,6 +48,7 @@ import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoCon
|
||||||
import org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration;
|
import org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration;
|
||||||
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConverters;
|
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConverters;
|
||||||
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConvertersAutoConfiguration;
|
import org.springframework.boot.http.converter.autoconfigure.HttpMessageConvertersAutoConfiguration;
|
||||||
|
import org.springframework.boot.servlet.filter.OrderedFormContentFilter;
|
||||||
import org.springframework.boot.test.context.assertj.AssertableWebApplicationContext;
|
import org.springframework.boot.test.context.assertj.AssertableWebApplicationContext;
|
||||||
import org.springframework.boot.test.context.runner.ContextConsumer;
|
import org.springframework.boot.test.context.runner.ContextConsumer;
|
||||||
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
import org.springframework.boot.test.context.runner.WebApplicationContextRunner;
|
||||||
|
@ -61,7 +62,6 @@ import org.springframework.boot.web.server.servlet.ServletWebServerFactory;
|
||||||
import org.springframework.boot.web.server.servlet.context.AnnotationConfigServletWebServerApplicationContext;
|
import org.springframework.boot.web.server.servlet.context.AnnotationConfigServletWebServerApplicationContext;
|
||||||
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
import org.springframework.boot.web.servlet.FilterRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.filter.OrderedFormContentFilter;
|
|
||||||
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter;
|
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfiguration.WebMvcAutoConfigurationAdapter;
|
||||||
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfigurationTests.OrderedControllerAdviceBeansConfiguration.HighestOrderedControllerAdvice;
|
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfigurationTests.OrderedControllerAdviceBeansConfiguration.HighestOrderedControllerAdvice;
|
||||||
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfigurationTests.OrderedControllerAdviceBeansConfiguration.LowestOrderedControllerAdvice;
|
import org.springframework.boot.webmvc.autoconfigure.WebMvcAutoConfigurationTests.OrderedControllerAdviceBeansConfiguration.LowestOrderedControllerAdvice;
|
||||||
|
|
Loading…
Reference in New Issue