页面报错because its MIME type (‘text/plain‘) is not executable, and strict MIME type checking is enabled

jsp页面报错MIME类型错误 , 意思是ajax.js响应的是MIME type ('text/plain'),纯文本类型 , 但是页面解析的是html类型 , 所以报错类型不匹配。

解决办法:

首先观察Tomcat响应浏览器请求时的HTTP头部,是否开启了头部安全协议:HTTP协议安全头部X-Content-Type-Options

X-Content-Type-Options: nosniff

现在原因可以解释了:安全头部X-Content-Type-Options: nosniff遇到了格式不正确的Content-Type格式,造成了请求的阻塞。

如果开启了头部安全协议 , 需要将此协议关掉

修改/conf/web.xml,禁用X-Content-Type-Options特性

  1. <filter>

  2. <filter-name>httpHeaderSecurity</filter-name>

  3. <filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter</filter-class>

  4. <async-supported>true</async-supported>

  5. <init-param>

  6. <param-name>blockContentTypeSniffingEnabled</param-name>

  7. <param-value>false</param-value>

  8. </init-param>

  9. </filter>

  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值