在 JavaEE 应用程序中。
我在 web.xml 中有 index.html 页面作为“欢迎文件”
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
我想将 Http Header 添加到 index.html 的响应中
一种方法是使用 index.jsp 而不是 index.html 并在 scriptlet 中添加:
<% response.addHeader("X-Frame-Options", "DENY"); %>
还有其他方法吗?是否有可能添加某种过滤器
例如:
WelcomeFileFilter {
void filter(HttpServletResponse response) {
response.addHeader("X-Frame-Options", "DENY");
}
}
因为我不想使用 index.jsp 而不是 index.html。