File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
web/src/main/java/org/springframework/security/web/access/intercept Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ public boolean isObserveOncePerRequest() {
188
188
189
189
/**
190
190
* Sets whether this filter apply only once per request. By default, this is
191
- * <code>true </code>, meaning the filter will only execute once per request. Sometimes
191
+ * <code>false </code>, meaning the filter will execute on every request. Sometimes
192
192
* users may wish it to execute more than once per request, such as when JSP forwards
193
193
* are being used and filter security is desired on each included fragment of the HTTP
194
194
* request.
@@ -200,7 +200,8 @@ public void setObserveOncePerRequest(boolean observeOncePerRequest) {
200
200
}
201
201
202
202
/**
203
- * If set to true, the filter will be applied to error dispatcher. Defaults to false.
203
+ * If set to true, the filter will be applied to error dispatcher. Defaults to
204
+ * {@code true}.
204
205
* @param filterErrorDispatch whether the filter should be applied to error dispatcher
205
206
*/
206
207
public void setFilterErrorDispatch (boolean filterErrorDispatch ) {
@@ -209,7 +210,7 @@ public void setFilterErrorDispatch(boolean filterErrorDispatch) {
209
210
210
211
/**
211
212
* If set to true, the filter will be applied to the async dispatcher. Defaults to
212
- * false .
213
+ * {@code true} .
213
214
* @param filterAsyncDispatch whether the filter should be applied to async dispatch
214
215
*/
215
216
public void setFilterAsyncDispatch (boolean filterAsyncDispatch ) {
You can’t perform that action at this time.
0 commit comments