web.xml中和四种认证类型

的子元素 是可选的,如果没有 元素,这表示将禁止所有 HTTP 方法访问相应的资源。 
子元素 需要和 相配合使用,但可以被单独使用。如果没有 子元素,这表明任何身份的用户都可以访问相应的资源。也就是说,如果 中没有 子元素的话,配置实际上是不起中用的。如果加入了 子元素,但是其内容为空,这表示所有身份的用户都被禁止访问相应的资源。 
web.xml: 
Xml代码  
  1. <security-constraint>    
  2.   <display-name>    
  3.   baseporjectdisplay-name>    
  4.   <web-resource-collection>    
  5.    <web-resource-name>baseprojectweb-resource-name>    
  6.    <url-pattern>*.jspurl-pattern>    
  7.    <url-pattern>*.dourl-pattern>    
  8.    <http-method>GEThttp-method>    
  9.    <http-method>PUThttp-method>    
  10.    <http-method>HEADhttp-method>    
  11.    <http-method>TRACEhttp-method>    
  12.    <http-method>POSThttp-method>    
  13.    <http-method>DELETEhttp-method>    
  14.    <http-method>OPTIONShttp-method>    
  15.   web-resource-collection>    
  16.   <auth-constraint>    
  17.    <description>    
  18.    baseprojectdescription>    
  19.    <role-name>All Rolerole-name>    
  20.   auth-constraint>    
  21.   <user-data-constraint>    
  22.    <transport-guarantee>NONEtransport-guarantee>    
  23.   user-data-constraint>    
  24. security-constraint>    
  25. <login-config>    
  26.   
  27. <security-constraint>   
  28.   <display-name>   
  29.   baseporjectdisplay-name>   
  30.   <web-resource-collection>   
  31.    <web-resource-name>baseprojectweb-resource-name>   
  32.    <url-pattern>*.jspurl-pattern>   
  33.    <url-pattern>*.dourl-pattern>   
  34.    <http-method>GEThttp-method>   
  35.    <http-method>PUThttp-method>   
  36.    <http-method>HEADhttp-method>   
  37.    <http-method>TRACEhttp-method>   
  38.    <http-method>POSThttp-method>   
  39.    <http-method>DELETEhttp-method>   
  40.    <http-method>OPTIONShttp-method>   
  41.   web-resource-collection>   
  42.   <auth-constraint>   
  43.    <description>   
  44.    baseprojectdescription>   
  45.    <role-name>All Rolerole-name>   
  46.   auth-constraint>   
  47.   <user-data-constraint>   
  48.    <transport-guarantee>NONEtransport-guarantee>   
  49.   user-data-constraint>   
  50. security-constraint>   
  51. <login-config>Xml代码   
  52.     
  53.   <auth-method>FORMauth-method>    
  54.   <form-login-config>    
  55.    <form-login-page>/login.htmlform-login-page>    
  56.    <form-error-page>/error.htmlform-error-page>    
  57.   form-login-config>    
  58. login-config>    
  59. <security-role>    
  60.   <role-name>All Rolerole-name>    
  61. security-role>    
  62.   
  63.    
  64.   <auth-method>FORMauth-method>   
  65.   <form-login-config>   
  66.    <form-login-page>/login.htmlform-login-page>   
  67.    <form-error-page>/error.htmlform-error-page>   
  68.   form-login-config>   
  69. login-config>   
  70. <security-role>   
  71.   <role-name>All Rolerole-name>   
  72. security-role>   


    security-constriaint元素的用途是用来指示服务器使用何种验证方法了.此元素在web.xml中应该出现在login-config 的紧前面。它包含是个可能的子元素,分别是:web-resource-collection、auth-constraint、user-data- constraint和display-name。下面各小节对它们进行介绍。 
1. web-resource-collection 
  此元素确定应该保护的资源,所有security-constraint元素都必须包含至少一个web-        resource-collection项.此元素由一个给出任意标识名称的web-resource-name元素、一个确定应该保护URL    的url-pattern元素、一个指出此保护所适用的HTTP命令(GET、POST等,缺省为所有方法)的http-method元素和一个提供资料 的可选description元素组成。 
    重要的是应该注意到,url-pattern仅适用于直接访问这些资源的客户机。特别是,它不适合于通过MVC体系结构利用RequestDispatcher来访问的页面,或者不适合于利用类似jsp:forward的手段来访问的页面。 
2. auth-constraint 
元素却指出哪些用户应该具有受保护资源的访问权。此元素应该包含一个或多个标识具有访问权限的用户类别role-name元素,以及包含(可选)一个描述角色的description元素。 
3. user-data-constraint 
这个可选的元素指出在访问相关资源时使用任何传输层保护。它必须包含一个transport-guarantee子元素(合法值为NONE、 INTEGRAL或CONFIDENTIAL),并且可选地包含一个description元素。transport-guarantee为NONE值将 对所用的通讯协议不加限制。INTEGRAL值表示数据必须以一种防止截取它的人阅读它的方式传送。虽然原理上(并且在未来的HTTP版本中),在 INTEGRAL和CONFIDENTIAL之间可能会有差别,但在当前实践中,他们都只是简单地要求用SSL。 
4 四种认证类型: 

Xml代码  
  1. BASIC:HTTP规范,Base64   
  2. <web-app>   
  3.     ......   
  4.     <login-config>   
  5.         <auth-method>BASICauth-method>   
  6.     login-config>   
  7.     ......   
  8. web-app>   
  9.   
  10. DIGEST:HTTP规范,数据完整性强一些,但不是SSL   
  11. <web-app>   
  12.     ......   
  13.     <login-config>   
  14.         <auth-method>DIGESTauth-method>   
  15.     login-config>   
  16.     ......   
  17. web-app>   
  18.   
  19. CLIENT-CERT:J2EE规范,数据完整性很强,公共钥匙(PKC)   
  20. <web-app>   
  21.     ......   
  22.     <login-config>   
  23.         <auth-method>CLIENT-CERTauth-method>   
  24.     login-config>   
  25.     ......   
  26. web-app>   

FORM:J2EE规范,数据完整性非常弱,没有加密,允许有定制的登陆界面。 
 
    ...... 
     
        FORM 
         
            /login.html 
            /error.jsp 
         
     
    ...... 
 
这里的 FORM 方式需要说明的是 登录页面的固定的元素:login.html 

Html代码  
  1. <form name="loginform" method="post" action="j_security_check">   
  2.   
  3. <INPUT name="j_username" type="text">   
  4.   
  5. <INPUT name="j_password" TYPE="password">   
  6.   
  7. <input type="submit" value="登 录" >   
  8.   
  9. form>   

form 的action 必须是j_security_check, method="post", 用户名 name="j_username" , 密码name="j_password"  这些都是固定的元素 

你可能感兴趣的:(web.xml中和四种认证类型)