无法在开发模式下运行GET。没有声明元素' aop:scoped-proxy'?

时间:2013-03-07 16:40:03

标签: spring gwt

GWT,Spring,Maven和Eclipse的播放效果不佳。我正试图在开发模式下在我的本地机器上运行(一个相当大的)项目。我能够成功构建应用程序,但我无法在Eclipse中运行它。使用mvn gwt:run从命令行在其中运行时,生产模式有效。

我已将其缩小到xsd架构的问题。它无法在我的context.xml文件中解析<aop:scoped-proxy />

我正在使用GWT 2.5,Spring 3.0.5-RELEASE和Maven 3.0.4。我已经明确地将spring-aop-3.0.5-RELEASE.jar添加到我的类路径中,但仍然没有运气。

appContext.xml

的顶部
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd "
       default-init-method="init" default-lazy-init="true">

STDOUT

Nested in org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: 
Line 131 in XML document from class path resource [appContext.xml] is invalid; 
nested exception is org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: 
The matching wildcard is strict, but no declaration can be found for element 
'aop:scoped-proxy'.:
org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is 
strict, but no declaration can be found for element 'aop:scoped-proxy'.

日志文件

[main] WARN factory.xml.XmlBeanDefinitionReader - Ignored XML validation warning
org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 
'http://www.springframework.org/schema/aop/spring-aop-2.0.xsd', because 1) could 
not find the document; 2) the document could not be read; 3) the root element of 
the document is not <xsd:schema>.

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

我能够使用mvn gwt:run让它在开发模式下运行。我第一次遇到这个问题时,我很接近。

我不知道的一件事是?gwt.codesvr=127.0.0.1:9997在网址末尾的重要性。没有这个GWT,DevMode util将无法跟踪用户交互。

http://localhost:8888/index.html?gwt.codesvr=127.0.0.1:9997

为了安全起见,我在Eclipse中清理并重建了maven项目。不确定这是否会对它产生影响。