Modifying the HTTP Response Using Filters
|
|
I think the question relates to ASP.NET, not Java. This might help: |
||
|
|
|
|
These kind of components are called filters in the Java world. They are capable of modifying requests/responses before they are dispachted to the handler component resp. before the response is delivered to the client. In ASP.NET these kind of components are called HTTP Modules. |
||
|
|
|
|
USE : response Purpose The response object is an instance of the Servlet API's HttpServletResponse class Examples class BookController { def downloadFile = { byte[] bytes = // read bytes response.outputStream << bytes } } Description The Servlet API's HttpServletResponse class can be used within Grails to perform all typical activities such as writing out binary data, writing directly to the response and sending error response codes to name but a few. |
||
|
|
