コード例 #1
0
 /**
  * Extract the handler method name from the given request URI. Delegates to <code>
  * WebUtils.extractViewNameFromUrlPath(String)</code>.
  *
  * @param uri the request URI (e.g. "/index.html")
  * @return the extracted URI filename (e.g. "index")
  * @see org.springframework.web.util.WebUtils#extractFilenameFromUrlPath
  */
 protected String extractHandlerMethodNameFromUrlPath(String uri) {
   return WebUtils.extractFilenameFromUrlPath(uri);
 }