Grails 布局不变

发布于 2024-12-21 02:51:58 字数 107 浏览 3 评论 0原文

我已在一台 PC 上从 STS 导出 grails 应用程序,并在另一台 PC 上使用 STS 导入它。但要知道我的布局无法正确呈现。它保留了一些以前的设置,例如图像和 CSS。我该如何修复这个问题?

I have exported grails application from STS on one PC and imported it with STS on another. But know my layout doesnt render properly. It kept some previous settings like images and css. How can I repair this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

别低头,皇冠会掉 2024-12-28 02:51:58

web-app/WEB-INF/ 可能包含静态资源的缓存版本,我建议运行grails clean,然后尝试再次运行应用程序。

Config.groovy 中的 grails.resources.adhoc.patterns = ["/images/*", "*.css"] 也可能有帮助

The web-app/WEB-INF/ might contain cached versions of your static resources, I would recommend running grails clean and then trying to run-app again.

also grails.resources.adhoc.patterns = ["/images/*", "*.css"] in Config.groovy might help

捂风挽笑 2024-12-28 02:51:58

将其添加到conf文件夹中的Config.groovy中(可能仅用于开发)

 grails.resources.debug = true

add this to your Config.groovy in conf folder (probably only for development)

 grails.resources.debug = true
冰魂雪魄 2024-12-28 02:51:58

也许是重新加载 gsp 文件的问题?试试这个:

grails.gsp.enable.reload=true

Maybe it's problem with reloading gsp files? Try this:

grails.gsp.enable.reload=true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文