我只是尝试Spring启动,并且我有简单的测试JSP页面,我想转换为百万美元。 JSP有一个顶页指令,用于设置响应头。我怎样才能在百里香中做同样的事情?
Index.jsp
<%
response.setHeader("Content-Security-Policy-Report-Only", "default-src 'self');
%>
答案 0 :(得分:2)
简短的回答是,你没有。不是在Thymeleaf。在Spring MVC控制器中设置响应头。
答案很长:https://springframework.guru/setting-response-headers-in-thymeleaf/
希望这有帮助!