1 16 17 package org.springframework.web.servlet; 18 19 import javax.servlet.http.HttpServletRequest ; 20 21 54 public interface HandlerMapping { 55 56 65 String PATH_WITHIN_HANDLER_MAPPING_ATTRIBUTE = HandlerMapping.class.getName() + ".pathWithinHandlerMapping"; 66 67 68 83 HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception ; 84 85 } 86 | Popular Tags |