InterviewSolution
Saved Bookmarks
| 1. |
Does order matter in the intercept-url pattern? If yes, then in which order should we write it? |
|
Answer» YES, ordering is crucial when we have multiple intercept-URL PATTERNS. Multiple intercept URLS should be WRITTEN from more specific to less specific. As intercept-URL patterns are processed in the order they appear in a SPRING security configuration file, the URL must match the right pattern. |
|