Spring依赖错误

时间:2012-07-05 07:38:51

标签: ajax spring

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/util/spring-util-3.0.xsd">


<dependency>
    <groupId>org.codehaus.jackson</groupId>
    <artifactId>jackson-core-asl</artifactId>
    <version>1.9.7</version>
    </dependency>
    <dependency>
    <groupId>org.codehaus.jackson</groupId>
    <artifactId>jackson-mapper-asl</artifactId>
    <version>1.9.0</version>
</dependency>

我收到了一个错误:

  

(“cvc-complex-type.2.4.a:从找到的无效内容开始   元素'依赖'。之一   '{“http://www.springframework.org/schema/beans":import,"http://:http://   www.springframework.org/schema/beans":alias,   “http://www.springframework.org/schema/beans":bean,   WC [## other:“http://www.springframework.org/schema/beans”]}'是   预期。)

我被包括在内(jackson-mapper-asl和jackson-core-asl)进入我工作空间的lib 没有得到为什么这个错误发生了帮助。

1 个答案:

答案 0 :(得分:2)

你有两件事情混在一起:Spring配置文件和Maven的项目配置文件(pom.xml)。 <dependency>元素属于pom.xml文件,而不属于Spring配置。

此外,您不需要在任何地方包含jar文件,Maven负责处理依赖项。