Browse Source

Optimize AntPathRequestMatcher.getRequestPath()

pull/6576/head
Christoph Dreis 8 years ago committed by Rob Winch
parent
commit
0f97086c86
  1. 7
      web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java

7
web/src/main/java/org/springframework/security/web/util/matcher/AntPathRequestMatcher.java

@ -1,5 +1,5 @@ @@ -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");
* you may not use this file except in compliance with the License.
@ -173,8 +173,9 @@ public final class AntPathRequestMatcher @@ -173,8 +173,9 @@ public final class AntPathRequestMatcher
private String getRequestPath(HttpServletRequest request) {
String url = request.getServletPath();
if (request.getPathInfo() != null) {
url += request.getPathInfo();
String pathInfo = request.getPathInfo();
if (pathInfo != null) {
url = StringUtils.hasLength(url) ? pathInfo : url + pathInfo;
}
return url;

Loading…
Cancel
Save