Jrebel、Spring MVC 和 TIles。无法让 Jrebel 获取对views.xml 的更改

发布于 2024-11-05 16:24:33 字数 143 浏览 0 评论 0原文

我正在尝试将 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 技术交流群。

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

发布评论

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

评论(2

天冷不及心凉 2024-11-12 16:24:33

只需将其报告给 JRebel 论坛 - 它将被注册为功能请求

Just report it to JRebel forum - it will be registered as a feature request

少钕鈤記 2024-11-12 16:24:33

如果您使用 spring roo 生成的项目,那么它至少使用tiles 2.2.1。在这种情况下,您不需要 Jrebel 来执行此操作,因为 Tiles 可以直接执行此操作,只需在 spring 的 TilesConfigurer bean 上将 useMutableTilesContainercheckRefresh 属性设置为 true ,

 <bean class="org.springframework.web.servlet.view.tiles2.TilesConfigurer"
   id="tilesConfigurer" >
<property name="useMutableTilesContainer">true</property>
<property name="checkRefresh">true</property>

详细说明如下: 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

 <bean class="org.springframework.web.servlet.view.tiles2.TilesConfigurer"
   id="tilesConfigurer" >
<property name="useMutableTilesContainer">true</property>
<property name="checkRefresh">true</property>

it's explained in detail here: http://lalyos.github.com/blog/2012/08/29/tiles-reload-definitions-in-springmvc/

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