xml 禁用xframes在web.xml中添加此项(如果yeoman使用yo web.xml)。在tomcat中我们可以在/ opt / tomcat / webapps / ROOT / WEB-
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 禁用xframes在web.xml中添加此项(如果yeoman使用yo web.xml)。在tomcat中我们可以在/ opt / tomcat / webapps / ROOT / WEB-相关的知识,希望对你有一定的参考价值。
<filter>
<filter-name>httpHeaderSecurity</filter-name>
<filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter</filter-class>
<async-supported>true</async-supported>
<init-param>
<param-name>antiClickJackingEnabled</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>antiClickJackingOption</param-name>
<param-value>DENY</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>httpHeaderSecurity</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
以上是关于xml 禁用xframes在web.xml中添加此项(如果yeoman使用yo web.xml)。在tomcat中我们可以在/ opt / tomcat / webapps / ROOT / WEB-的主要内容,如果未能解决你的问题,请参考以下文章
如何禁用tomcat 7控制台调试信息
禁用 Maven 警告消息 - “选定的战争文件包括将被忽略的 WEB-INF/web.xml”
idea中添加web.xml配置文件与tomcat启动中遇到的web.xml文件找不到的问题
在web.xml中添加条件
Web.xml 中 metadata-complete 介绍
maven 搭建spring框架报找不到applicationContext-*.xml文件