0

在同一个项目的一个包中,我用来@Autowired从我的 appcontext.xml 中获取一个元素,它工作正常。在同一个 appcontext 中定义的 bean,然后是@Autowired,成功创建,但没有尝试注入 bean。

我觉得好像我可能遗漏了一些与类路径有关的东西。现在,我一直在尝试添加<context:component-scan />我的 appcontext,但这只会给我这个错误:

org.xml.sax.SAXParseException: cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'context:component-scan'.

我的 AppContext.xml 的一部分:

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

   <context:component-scan base-package="org.jasig.cas.web.flow"/>

在其下方进一步定义 bean。

有任何明显的缺陷,还是我应该更改一些其他配置?

4

1 回答 1

3

线xmlns:context="http://www.springframework.org/schema/context/spring-context-2.5.xsd" 应该只是xmlns:context="http://www.springframework.org/schema/context"

于 2013-06-05T13:12:14.083 回答