0

我正在使用 Java 和 Spring 开发一个应用程序,并且正在尝试将其上传到 AppFog。

该应用程序运行正常,并且在 AppFog 中运行,但在 Eclipse 中,我的applicationContext.xml文件中出现了一个非常烦人的错误。

根据 AppFog 中的文档,我必须像这样设置它:Spring - AppFog Documentation

我的 applicationContext.xml 的片段

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:jee="http://www.springframework.org/schema/jee" 
    xmlns:tx="http://www.springframework.org/schema/tx" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:cloud="http://schema.cloudfoundry.org/spring"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd         
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd         
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd         
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.1.xsd         
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd 
        http://schema.cloudfoundry.org/spring 
        http://schema.cloudfoundry.org/spring/cloudfoundry-spring.xsd">

<cloud:data-source id="dataSource">

在标签中cloud:data source我收到错误:

Multiple annotations found at this line:
- schema_reference.4: Failed to read schema document 'http://schema.cloudfoundry.org/spring/cloudfoundry-spring.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>.
- cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'cloud:data-source'.

我尝试过http://schema.cloudfoundry.org/spring/cloudfoundry-spring-0.8.xsd不同的版本,但我总是遇到同样的错误。

我的 pom 中也包含了下一个库:

<dependency>
    <groupId>org.cloudfoundry</groupId>
    <artifactId>cloudfoundry-runtime</artifactId>
    <version>0.8.1</version>
</dependency>

一些想法?

谢谢!

4

1 回答 1

0

所以看起来您的应用程序在本地和 AppFog 上运行,但正如您所说,问题是 Eclipse 中的验证错误。你在使用 Spring Tool Suite 插件吗?这里实际应该发生的是架构应该在 Spring Jar 文件中找到(源在 Github https://github.com/cloudfoundry/vcap-java/blob/master/cloudfoundry-runtime/src/main/resources /META-INF/spring.schemas ) - 我想应该有一种方法可以告诉 Eclipse 在那里解决它,我怀疑 STS 实际上会知道如何解决它。

于 2013-07-22T17:18:32.033 回答