Grails 布局不变
我已在一台 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
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"]
inConfig.groovy
might help将其添加到conf文件夹中的Config.groovy中(可能仅用于开发)
add this to your Config.groovy in conf folder (probably only for development)
也许是重新加载 gsp 文件的问题?试试这个:
Maybe it's problem with reloading gsp files? Try this: