jboss4.2.3禁用http put/delete等请求

在应用的web.xml中配置如下信息:

<security-constraint>

    <web-resource-collection>

       <web-resource-name>NoAccess</web-resource-name>

       <url-pattern>/*</url-pattern>   

    </web-resource-collection>   

    <auth-constraint/>

</security-constraint>

<security-constraint> 

    <web-resource-collection>    

        <web-resource-name>AllowedMethods</web-resource-name>    

        <url-pattern>/*</url-pattern>    

          <http-method>GET</http-method>

         <http-method>POST</http-method>

         <http-method>HEAD</http-method>

    </web-resource-collection>

</security-constraint>

在项目中配置在当前项目中有效,如果想让jboss下所有项目都生效,则在jboss下conf\web.xml中配置。

上一篇:Python12/11--盒子的显隐/布局/z-index/流式布局思想


下一篇:Linux学习笔记之Python3的安装以及创建虚拟环境(CentOS)