Skip to content

Commit 3d66e6f

Browse files
committed
Fix warning from Spring Security about usage of deprecated attribute.
The warning was: 2014-09-15 23:19:55 WARN org.springframework.security.config.http.MatcherType:60 - 'path-type' is deprecated. Please use 'request-matcher' instead. No functional changes.
1 parent 659e397 commit 3d66e6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/spring/security.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<http
1414
use-expressions="true"
15-
path-type="regex"
15+
request-matcher="regex"
1616
entry-point-ref="http401UnauthorizedEntryPoint">
1717

1818
<form-login

0 commit comments

Comments
 (0)