2

我第一次尝试@autowired,但失败了。我已经阅读了很多示例,而且我似乎做的一切都是正确的,但是当我的代码命中我的 getLeagueDAO() 方法时,实例变量被设置为 null。

我有以下代码:

package com.example.app.service;

@Service
public class LeagueService {

    // also tried @Autowired here, and that didn't work
    private LeagueDAO leagueDao; // = new LeagueHibernateDAO();

    public LeagueDAO getLeagueDAO() {
        return this.leagueDao;
    }

    @Autowired
    public void setLeagueDAO( LeagueDAO dao ) {
        this.leagueDao = dao;
    }

    [ ... ]

联盟HibernateDAO:

package com.example.app.dao.impl.hibernate;

import ...

public class LeagueHibernateDAO implements LeagueDAO {

    public LeagueHibernateDAO() {
        super();
    }

    [ ... ]

我的 *-servlet.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:p="http://www.springframework.org/schema/p" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd

        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/>

    <context:component-scan base-package="com.example"/>

    <mvc:annotation-driven />

    <bean id="LeagueDAO" class="com.example.app.dao.impl.hibernate.LeagueHibernateDAO" />

    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

我的 Spring 依赖项是:

    ... <org.springframework.version>3.0.6.RELEASE</org.springframework.version> ...


    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>${org.springframework.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-web</artifactId>
        <version>${org.springframework.version}</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>${org.springframework.version}</version>
    </dependency>

我的单元测试没有运行。我的应用程序没有运行。都是因为 LeagueDao 没有在 LeagueService 中设置。为什么不接线?

我的完整解决方案

为了任何遇到类似问题的人的利益...

1) 很明显,我不知道如何编写自动装配代码的测试。接受的答案提供了如何执行此操作的工作示例。

2) 似乎通过自动装配,它基本上是全有或全无。我已经创建了一个应用程序并想返回并自动装配它。所以我想我会从小处着手,将 LeagueDAO 自动连接到 LeagueService。然而,因为 LeagueServiceTest 没有自动连接 LeagueService,它不会连接到 LeagueDAO 的引用。一旦我正确地自动连接了链中的每个步骤,一切都正常了。

因此,当我尝试运行我的应用程序时,即使我的测试现在可以正常工作,我的应用程序再次没有自动装配。为了解决问题,我终于意识到我必须完全自动连接另一条链。在这种情况下,我已经将 LeagueDAO 插入到 LeagueService。问题是 LeagueService 是由控制器调用的,控制器只是通过调用构造函数来实例化 LeagueService 类。当我将 LeagueService 自动连接到控制器中时,一切都开始工作了。

我已经阅读了很多关于此的内容,如果在任何地方都对此进行了解释,那么它并没有以我清楚的方式进行解释。啊。

4

2 回答 2

5

以下作品

单元测试

package com.example.app.service;

import static org.junit.Assert.*;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.*;

    @RunWith(SpringJUnit4ClassRunner.class)
    @ContextConfiguration(locations={"/springcontext.xml"})
    public class TestLeagueService {

        @Autowired
        LeagueService service;

        @Test
        public void test() {
            assertNotNull(service.getLeagueDAO()); 
        }

    }

package com.example.app.dao.impl.hibernate;

public interface LeagueDAO {

}

道实现

package com.example.app.dao.impl.hibernate;

public class LeagueHibernateDAO implements LeagueDAO {


    public LeagueHibernateDAO() {
        super();
    }
}

弹簧上下文

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
       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/context/spring-context-3.0.xsd">

     <context:annotation-config/>

    <context:component-scan base-package="com.example"/>


    <bean id="LeagueDAO" class="com.example.app.dao.impl.hibernate.LeagueHibernateDAO" />
    <bean id="LeagueService" class="com.example.app.service.LeagueService" />


</beans>
于 2012-04-19T04:05:10.253 回答
0

您是否在启动应用程序时检查过 Spring 容器是否正在启动?可能是您的web.xml配置有问题。

于 2012-04-19T20:26:48.927 回答