无法让Spring注入我的依赖项

时间:2011-10-01 13:36:05

标签: java spring dependency-injection inversion-of-control javabeans

我一直试图让Spring在我的应用程序中注入一个@Autowired依赖项而无济于事。我做错了什么?

我创建了一个名为TimeService的bean。它的工作是将当前时间返回给任何要求的人。

package com.foxbomb.springtest.domain.time;

import java.util.Date;
import org.springframework.stereotype.Service;

@Service
public class TimeService {

    public TimeService() {
        super();
        System.out.println("Instantiating TimeService...");
    }

    public Date getTime() {
        return new Date();
    }
}

当然,我需要告诉Spring这个,所以我在web.xml中添加了以下内容:

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring-context.xml</param-value>
</context-param>
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>  

很棒,还有一些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"
     xmlns:context="http://www.springframework.org/schema/context"
     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/context/spring-context-3.0.xsd">

    <context:annotation-config base-package="com.foxbomb.springtest.domain" />

</beans>

现在我们需要的是一个想要使用这个依赖项的调用类。不幸的是,@Autowired在这里似乎什么都不做:

package com.foxbomb.springtest;

import...

@Configurable
public class TimeManager {

    public TimeManager() {
        super();
        System.out.println("Instantiating TimeManager...");
    }

    @Autowired
    private TimeService timeService;

    public Date getTime() {
        return timeService.getTime();
    }

}

最后,一个想要显示时间的JSP:

<%@page import="com.foxbomb.springtest.ApplicationContextImpl"%>
<%@page import="com.foxbomb.springtest.TimeManager"%>

<html>
    <head>
        <title>Spring Test</title>
    </head>
    <body>
        <h1>Autowired Dependencies....</h1>
        <p>
            Time is now <%=new TimeManager().getTime()%>!
        </p>

    </body>
</html>

但我得到的只是:

java.lang.NullPointerException
    com.foxbomb.springtest.TimeManager.getTime(TimeManager.java:26)

5 个答案:

答案 0 :(得分:4)

当您访问TimeManager这样的对象时:

Time is now <%=new TimeManager().getTime()%>!

Spring对这门课一无所知。你基本上是在创建一个新对象,就是这样!

可能Spring会创建TimeManager的实例并正确注入依赖项(但是你应该使用@Service而不是@Configuration注释),但是你没有在JSP中使用这个实例。相反,你正在创建一个完全独立的新的非托管实例,并且不知道Spring和依赖...

认为这将有效:

<%= WebApplicationContextUtils.
  getWebApplicationContext(application).
  getBean(TimeManager.class).
  getTime() %>

丑?当然。因为从JSP(视图)访问服务的整个方法很难看。您至少应该有一个访问Spring bean并将结果放入请求属性的servlet。然后可以在转发到的JSP中访问这些属性 - 没有丑陋的scriptlet。

如果您真的想以“正确”方式执行此操作,请尝试使用Spring MVC或其他流行的Java Web框架。

答案 1 :(得分:1)

TimeManager中的@Autowire注释无法识别,因为您告诉spring开始在错误的包中搜索注释配置信息。

TimeManager位于com.foxbomb.springtest。

您有以下配置:

<context:annotation-config base-package="com.foxbomb.springtest.domain"/>

请注意“com.foxbomb.springtest!= com.foxbomb.springtest.domain”。

更改您的配置以包含此内容:

<context:annotation-config base-package="com.foxbomb.springtest"/>

编辑:Spring必须实例化TimeManager。

您需要:

  1. 让TimeManager成为控制器类的数据成员。
  2. @Autowire TimeManager进入控制器类(或以某种方式从春天获取)。
  3. 将TimeManager添加到某个适当的范围(可能是会话,可能是请求,也许是应用程序)。
  4. 在您的jsp页面上访问此TimeManager。也许是这样的:It is now ${MyTimeManager.time} balonia watch time.

答案 2 :(得分:0)

我倾向于同意@TomaszNurkiewicz;使用框架。但是,对于许多应用程序来说,框架方式过度杀伤。如果它对您来说太过分了,this answer详细说明了如何在没有自己获取bean的所有手动工作的情况下执行此操作。 IMO手动完成它的目的。

答案 3 :(得分:0)

您应该使用@Component(或儿童刻板印象注释)而不是@Configuration,并使用TimeManager注释@Configuration。 {{1}}用于基于Java的容器配置,这不是您在此处所做的。

答案 4 :(得分:0)

最后!

我使用上面示例中的代码。诀窍是设置Aspect / J和Weaving。这允许@Configurable带注释的类自动实现它依赖于Spring来注入依赖项。

基础包没有太大问题:)我不小心做了一个xml错误,试图将base-package属性添加到上下文:annotation-config标签。正确的定义是:

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

我实际上最终需要将其更改为com.foxbomb.springtext以包含试图访问bean的类 - 最后它也会被注释。

感谢大家的帮助!