请教一个关于tomcat认证的问题!

请教一个关于tomcat认证的问题!

在tomcat中配置了三个虚拟主机器,分别为www.a.com www.b.com www.c.com
三个虚拟主机的目录分别为
/usr/local/htdocs/www.a.com/
/usr/local/htdocs/www.b.com/
/usr/local/htdocs/www.c.com/
现在的需求是只对www.a.com做基础认证
但是在web.xml中添加以下信息后,所有的虚拟主机都做了认证,
<security-constraint>
    <web-resource-collection>
      <web-resource-name>Entire Application</web-resource-name>
      <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
       <!-- NOTE:  This role is not present in the default users file -->
       <role-name>tomcat</role-name>
    </auth-constraint>
  </security-constraint>

  <!-- Define the Login Configuration for this Application -->
  <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Access Control!Please Enter Uername And Passwd</realm-name>
  </login-config>
</web-app>

请问一下,对具体目录做认证需要怎么做?<url-pattern>/*</url-pattern>中的/指的是绝对路径还是相对路径?谢谢大家
顶起来~~~
继续顶起来
相对路径
楼上的大哥,这个相对路径是从哪个地方作为起点呢?tomcat安装目录吗?例:/usr/local/tomcat
网站的根目录
做了一下,还是不行,只要开启认证,所有的虚拟机都做了认证
昨晚加了一个apache2.2和tomcat做了整合,想用apache目录做验证,实现了.可是新的问题又出现了,由于tomcat我做了ssl,所以https://www.a.com:8443还是做不了验证,头都大了~
如果tomcat能对具体目录做验证的话,基本上我的要求都能实现了,哪位英雄出来指点一下.万分感谢
终于弄好了
怎么弄好的?