春季DWR集成的问题?

时间:2009-10-09 06:53:05

标签: xml namespaces spring dwr

实际上并非如此,我们如何整合DWR以及所有这些。但实际问题是我正在使用

xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"

并且几个小时后'http://www.directwebremoting.org'关闭了,所以我无法部署我的应用程序,现在当网站回来时我知道这个链接 'http://www.directwebremoting.org/schema/spring-dwr'不再存在。

那么可能解决这个问题的原因是什么,为什么它连接到指定的站点。我应该怎么做,即使网站关闭,或链接不可用,我的应用程序仍然可以部署。

1 个答案:

答案 0 :(得分:0)

看起来他们可能已经在DWR的网站上移动了xsd的位置。您应该可以通过将schemaLocation添加到配置文件中来解决此问题,如下所示:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
xsi:schemaLocation=" http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.directwebremoting.org/schema/spring-dwr
http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd">

如果您担心DWR网站的可用性,您可以将模式放在本地网络可用的位置,或使用file:语法引用该模式以引用本地计算机上的内容。我不确定是否有一种方法可以引用类路径上的模式。