我想在我的spring应用程序中防止xss攻击。
我补充说
<context-param>
<param-name>defaultHtmlEscape</param-name>
<param-value>true</param-value>
</context-param>
进入我的web.xml(我在这里发现这个灵魂)
但在我的页面上,我使用名称保存内容<script>alert(1);</script>
,此脚本在页面刷新后执行。
客户端代码:
$.ajax({
type: 'POST',
url: 'setContentName',
dataType: 'json',
data: {contentId: id, name: params.value}
});
我怎么了?
PS
我刷新后使用javascript加载内容