mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-10 04:13:31 +00:00
Optimize AntPathRequestMatcher.getRequestPath()
This commit is contained in:
parent
a08fa22b27
commit
4ccd2f7ebd
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2002-2016 the original author or authors.
|
* Copyright 2002-2018 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
@ -173,8 +173,9 @@ public final class AntPathRequestMatcher
|
|||||||
private String getRequestPath(HttpServletRequest request) {
|
private String getRequestPath(HttpServletRequest request) {
|
||||||
String url = request.getServletPath();
|
String url = request.getServletPath();
|
||||||
|
|
||||||
if (request.getPathInfo() != null) {
|
String pathInfo = request.getPathInfo();
|
||||||
url += request.getPathInfo();
|
if (pathInfo != null) {
|
||||||
|
url = StringUtils.hasLength(url) ? pathInfo : url + pathInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
return url;
|
return url;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user