如何使用Thymeleaf写入响应头

时间:2016-01-20 16:34:34

标签: java jsp spring-boot thymeleaf

我只是尝试Spring启动,并且我有简单的测试JSP页面,我想转换为百万美元。 JSP有一个顶页指令,用于设置响应头。我怎样才能在百里香中做同样的事情?

Index.jsp

    <%
        response.setHeader("Content-Security-Policy-Report-Only", "default-src 'self');
    %> 

1 个答案:

答案 0 :(得分:2)

简短的回答是,你没有。不是在Thymeleaf。在Spring MVC控制器中设置响应头。

答案很长:https://springframework.guru/setting-response-headers-in-thymeleaf/

希望这有帮助!