gpt4 book ai didi

grails - 如何防止 Grails 缓存旧版本的 gsp 文件?

转载 作者:行者123 更新时间:2023-12-03 07:47:42 26 4
gpt4 key购买 nike

我正在对/grails-app/views/index.gsp 进行修改。

当我保存文件并刷新时 http://localhost:8080/index.gsp在 Firefox 中,我得到的是该文件的旧版本。

有没有办法阻止 Grails 缓存和渲染旧版本的文件?

(我尝试重新启动服务器并清除 Firefox 的缓存。)

谢谢!

最佳答案

我们不能使用这样的过滤器吗?

class CacheFilters{

def filters = {
all(controller: '*', action: '*') {
before = {
((HttpServletResponse) response).setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
}
after = {

}
afterView = {

}
}
}

}

关于grails - 如何防止 Grails 缓存旧版本的 gsp 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1353156/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com