Chinaunix首页 | 论坛 | 博客
  • 博客访问: 628051
  • 博文数量: 796
  • 博客积分: 5000
  • 博客等级: 大校
  • 技术积分: 5095
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-10 09:43
文章分类

全部博文(796)

文章存档

2011年(1)

2008年(795)

我的朋友

分类:

2008-09-10 09:59:31

    private ConfigAttributeDefinition lookupUrlInMap(Map requestMap, String url) {
       
ConfigAttributeDefinition cad = (ConfigAttributeDefinition)requestMap.get(url);
        if(cad != null) {
            return cad;
        }
          
        Iterator entries = requestMap.entrySet().iterator();

        
while (entries.hasNext()) {
            Map.Entry entry 
= (Map.Entry) entries.next();
            Object p 
= entry.getKey();
            
boolean matched = urlMatcher.pathMatchesUrl(p, url);

            
if (logger.isDebugEnabled()) {
                logger.debug(
"Candidate is: '" + url + "'; pattern is " + p + "; matched=" + matched);
            }

            
if (matched) {
                
return (ConfigAttributeDefinition) entry.getValue();
            }
        }

        
return null;
    }

--------------------next---------------------

阅读(282) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~