Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
* <li>{@code WebMvcConfigurer}</li>
* <li>{@code WebMvcRegistrations}</li>
* <li>{@code WebSecurityConfigurer}</li>
* <li>{@code WebSecurityCustomizer}</li>
* </ul>
* <p>
* By default, tests annotated with {@code @WebMvcTest} will also auto-configure Spring
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
* @author Phillip Webb
* @author Madhura Bhave
* @author Yanming Zhou
* @author Luman Suen
*/
class WebMvcTypeExcludeFilter extends StandardAnnotationCustomizableTypeExcludeFilter<WebMvcTest> {

Expand All @@ -52,7 +53,9 @@ class WebMvcTypeExcludeFilter extends StandardAnnotationCustomizableTypeExcludeF
private static final String[] OPTIONAL_INCLUDES = { "tools.jackson.databind.JacksonModule",
"org.springframework.boot.jackson.JacksonComponent",
"org.springframework.security.config.annotation.web.WebSecurityConfigurer",
"org.springframework.security.web.SecurityFilterChain", "org.thymeleaf.dialect.IDialect",
"org.springframework.security.web.SecurityFilterChain",
"org.springframework.security.config.annotation.web.configuration.WebSecurityCustomizer",
"org.thymeleaf.dialect.IDialect",
"com.fasterxml.jackson.databind.Module", "org.springframework.boot.jackson2.JsonComponent" };

private static final Set<Class<?>> KNOWN_INCLUDES;
Expand Down