Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 grails 中的响应中删除标头。我有一个过滤器过滤请求,如果响应包含我想删除的特定标头,这可能吗?
谢谢,
看起来这样做的唯一方法是让您的 servlet 过滤器使用HttpServletResponseWrapper的实现来包装响应,该实现过滤掉您要删除的标头。因此,您并没有实际删除标头,而是在生成响应时,只有响应包装器返回的标头将包含在 HTTP 响应中。
这个我没试过,如果有用请告诉我!