Skip to content

Commit c1f2efe

Browse files
committed
Document that spring.security.filter properties are Servlet-only
Closes gh-33551
1 parent d277631 commit c1f2efe

File tree

1 file changed

+2
-2
lines changed
  • spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/SecurityProperties.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ public Filter getFilter() {
7676
public static class Filter {
7777

7878
/**
79-
* Security filter chain order.
79+
* Security filter chain order for Servlet-based web applications.
8080
*/
8181
private int order = DEFAULT_FILTER_ORDER;
8282

8383
/**
84-
* Security filter chain dispatcher types.
84+
* Security filter chain dispatcher types for Servlet-based web applications.
8585
*/
8686
private Set<DispatcherType> dispatcherTypes = new HashSet<>(
8787
Arrays.asList(DispatcherType.ASYNC, DispatcherType.ERROR, DispatcherType.REQUEST));

0 commit comments

Comments
 (0)