I am making modifications to /grails-app/views/index.gsp.
When I save the file and refresh http://localhost:8080/index.gsp in Firefox, I am getting an old version of the
can't we use a filter like this?
class CacheFilters{ def filters = { all(controller: '*', action: '*') { before = { ((HttpServletResponse) response).setHeader("Cache-Control", "no-store, no-cache, must-revalidate"); } after = { } afterView = { } } } }