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 @@ -206,7 +206,7 @@ public boolean isObserveOncePerRequest() {
206
206
207
207
/**
208
208
* Sets whether this filter apply only once per request. By default, this is
209
- * <code>true </code>, meaning the filter will only execute once per request. Sometimes
209
+ * <code>false </code>, meaning the filter will execute on every request. Sometimes
210
210
* users may wish it to execute more than once per request, such as when JSP forwards
211
211
* are being used and filter security is desired on each included fragment of the HTTP
212
212
* request.
@@ -218,7 +218,8 @@ public void setObserveOncePerRequest(boolean observeOncePerRequest) {
218
218
}
219
219
220
220
/**
221
- * If set to true, the filter will be applied to error dispatcher. Defaults to false.
221
+ * If set to true, the filter will be applied to error dispatcher. Defaults to
222
+ * {@code true}.
222
223
* @param filterErrorDispatch whether the filter should be applied to error dispatcher
223
224
*/
224
225
public void setFilterErrorDispatch (boolean filterErrorDispatch ) {
@@ -227,7 +228,7 @@ public void setFilterErrorDispatch(boolean filterErrorDispatch) {
227
228
228
229
/**
229
230
* If set to true, the filter will be applied to the async dispatcher. Defaults to
230
- * false .
231
+ * {@code true} .
231
232
* @param filterAsyncDispatch whether the filter should be applied to async dispatch
232
233
*/
233
234
public void setFilterAsyncDispatch (boolean filterAsyncDispatch ) {
You can’t perform that action at this time.
0 commit comments