Spring组件扫描不起作用

时间:2012-09-14 14:03:09

标签: java spring

Spring组件扫描似乎不起作用。我使用的是Spring 3.1和tomcat 7.0。

这就是我的applicationContext.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:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:cache="http://www.springframework.org/schema/cache"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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 
            http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd">

    <context:annotation-config/> 
    <context:component-scan base-package="com.abc"/>

    <bean id="myBean" class="com.efg.test.MyBean" />
</beans>

我有一个这样的课程:

package com.abc.test

@Component
class Test {
    @Autowired
    private static MyBean myBean;

    public static MyBean getMyBean() { return myBean; }
    public static void setMyBean(MyBean bean) { myBean = bean; }
}

我原本以为Spring会在启动web应用程序时初始化Test,并且会自动注入myBean,所以如果我调用Test的任何(静态)方法,我都会对myBean进行非空引用。

但是,myBean没有被注入并且总是为null(myBean本身被初始化为singleton,它只是不被注入)。要做到这一点,我还需要做些什么?如果我将Test-class添加到applicationContext.xml,一切正常。我的猜测是Spring没有初始化Test,因此没有连线。

更新 我需要能够从静态上下文访问autowired字段(此类的方法被称为JSP函数),因此它必须是静态的。

2 个答案:

答案 0 :(得分:7)

Spring的想法是初始化和配置类(即对象)的实例。在实践中,这意味着@Autowired无法应用于static字段,因为静态字段不属于任何实例(并且您的存取方法不应该是static孔)。

答案 1 :(得分:1)

我不相信你可以直接用Spring注入静态字段。请参阅this