How can I remove a Header from response in grails. I have a filter which filters requests and in case response contains a specific header I want to remove it is this possible?
Thanks,
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It looks like the only way to do this is to have your servlet filter wrap the response with an implementation of HttpServletResponseWrapper that filters out the header you want to remove. So you’re not physically removing the header, but when the response is generated only the headers that your response wrapper returns will be included in the HTTP response.
I’ve not tried this, so if it does work, please let me know!