加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

DWR在Tomcat报错:CSRF Security Error

发布时间:2020-12-15 21:01:55 所属栏目:百科 来源:网络整理
导读:-ArequesthasbeendeniedasapotentialCSRFattack. -Exceptionwhileprocessingbatch java.lang.SecurityException :CSRFSecurityError atorg.directwebremoting.dwrp.BaseDwrpHandler.checkNotCsrfAttack( BaseDwrpHandler.java:85 ) atorg.directwebremoting.
-ArequesthasbeendeniedasapotentialCSRFattack.
-Exceptionwhileprocessingbatch
java.lang.SecurityException:CSRFSecurityError
atorg.directwebremoting.dwrp.BaseDwrpHandler.checkNotCsrfAttack(BaseDwrpHandler.java:85)
atorg.directwebremoting.dwrp.BaseCallHandler.handle(BaseCallHandler.java:76)
atorg.directwebremoting.servlet.UrlProcessor.handle(UrlProcessor.java:120)
解决方法:
在 web.xml 中的 dwr 的 servlet 配置里面,加入下列代码:
<!--需加入跨域调用配置信息:如果报错CSRFSecurityError-->
<init-param>
<param-name>crossDomainSessionSecurity</param-name>
<param-value>false</param-value>
</init-param>
<init-param>
<param-name>allowScriptTagRemoting</param-name>
<param-value>true</param-value>
</init-param>



同类文章:http://bati99.iteye.com/blog/1220418

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读