Browse Source

Avoid filling up AntPathMatcher cache

This change avoid use of AntPathMatcher to extract URI template
variables when the lookup path is used as the best matching pattern.

Issue: SPR-10803
(cherry picked from commit a7af950)
pull/405/head
Rossen Stoyanchev 12 years ago committed by Juergen Hoeller
parent
commit
d4f4225e53
  1. 1
      spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping.java

1
spring-webmvc/src/main/java/org/springframework/web/servlet/mvc/method/RequestMappingInfoHandlerMapping.java

@ -18,7 +18,6 @@ package org.springframework.web.servlet.mvc.method; @@ -18,7 +18,6 @@ package org.springframework.web.servlet.mvc.method;
import java.util.*;
import java.util.Map.Entry;
import java.util.Set;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;

Loading…
Cancel
Save