Is it possible to make JSP pages not set any content type on response? In my setup, JSP doesn't directly generate the response, but rather an intermediate presentation, which is then processed by additional Java code that creates HTML or JSON based on that. So, can I somehow make JSP not set content-type on the response and leave it to the intermediate code? If I just remove contentType="..." in a JSP, it still defaults to text/html.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
You could make it ignore the content type that the JSP page sets. Would that be good enough? The basic idea would be to implement a ServletResponseWrapper, override the call to setContentType, and then use a filter to pass this response to the JSP rather than the real one. ResponseWrapperToIgnoreContentType.java
Filter to apply it:
EDIT: Just spotted a flaw in my logic. The content type is required to be set before you can call response.getWriter(), so that it can use the right character encoding. Dunno if this would affect you or not. |
||||
|
|
Nope. Why don't you store the preferred content-type in the class you're creating and generate accessors for it and have the JSP get it from there? |
|||
|
|