Jrebel、Spring MVC 和 TIles。无法让 Jrebel 获取对views.xml 的更改
我正在尝试将 Jrebel 与 IntelliJ 10 一起使用。我正在开发使用图块的 Spring Roo 生成的项目。我的类路径中有多个views.xml。
我想知道的是 JRebel 是否会接受views.xml 的更改。到目前为止我似乎还无法做到。
I'm trying to use Jrebel with IntelliJ 10. I'm working on Spring Roo generated project which uses tiles. There are multiple views.xml in my class path.
What I would like to know is if JRebel will pick up changes to views.xml. So far I can't seem to make it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将其报告给 JRebel 论坛 - 它将被注册为功能请求
Just report it to JRebel forum - it will be registered as a feature request
如果您使用 spring roo 生成的项目,那么它至少使用tiles 2.2.1。在这种情况下,您不需要 Jrebel 来执行此操作,因为 Tiles 可以直接执行此操作,只需在 spring 的 TilesConfigurer bean 上将 useMutableTilesContainer 和 checkRefresh 属性设置为 true ,
详细说明如下: http://lalyos.github.com/博客/2012/08/29/tiles-reload-definitions-in-springmvc/
If you are using spring roo generated project than it uses tiles 2.2.1 at least. in that case you dont need Jrebel to do it as Tiles can do it directly, just set the useMutableTilesContainer and checkRefresh properties to true on spring's TilesConfigurer bean
it's explained in detail here: http://lalyos.github.com/blog/2012/08/29/tiles-reload-definitions-in-springmvc/