DWR + Spring - 多个ajax过滤器不起作用
在 Spring (v2.5.1) 配置文件中定义多个 DWR (v2.0.5) ajax 过滤器是否存在问题?
例如:
<bean id="..." class="...">
<dwr:remote javascript="...">
<dwr:filter class="foo1"/>
<dwr:filter class="foo2"/>
</dwr:remote>
</bean>
在我的例子中,唯一被调用的过滤器是 foo2,或更准确地说是列表中的最后一个过滤器(通过切换过滤器等来检查这一点)。
最奇怪的是我找不到任何关于这个问题的信息,我尝试过谷歌和搜索 DWR 的错误数据库,但都没有找到任何结果!
谢谢, 克里斯
Is there a problem defining more than one DWR (v2.0.5) ajax filter in a Spring (v2.5.1) configuration file?
For example:
<bean id="..." class="...">
<dwr:remote javascript="...">
<dwr:filter class="foo1"/>
<dwr:filter class="foo2"/>
</dwr:remote>
</bean>
In my case the only filter getting called is foo2, or more accurately the last filter in the list (checked this by switching filters around etc).
The strangest thing is I can't find anything about such a problem, I've tried Google and searching DWR's bug database both of which turned up nothing!
Thanks,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是
DwrNamespaceHandler.java
中 dwr 的错误。它会在每次发现dwr:filter
标记时创建新的过滤器列表。This is a dwr's bug in
DwrNamespaceHandler.java
. It creates new list of filters on every discovery ofdwr:filter
tag.