English 中文(简体)
我如何在日本特尼特试验中自动电线?
原标题:How do I force autowiring in a JUnit test?

页: 1 页: 1 我会遇到麻烦,说明某类成员田地为何没有在Junnit测试中实现自动电线。 我的考验是......

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration({ "file:src/test/resources/testApplicationContext.xml" })
@TransactionConfiguration(defaultRollback=true)
@Transactional
public abstract class NowYouKnowEventsParserTest {

    private EventFeed eventFeed;

    @Before
    public void setUp() { 
        eventFeed = getEventFeed(16);
    }   // setUp

    @Test
    public void testParser() { 
        Assert.assertNotSame(0, eventFeed.getEvents().size());
    }   // testParser

    ...
    @Autowired
    private EventFeedsDao eventFeedsDao;

    protected EventFeed getEventFeed(final Integer id) { 
        return eventFeedsDao.findById(id);
    }   // getEventFeed
}

“EventFeed”类援引以下类别......

package com.myco.myproject.parsers;
...
public abstract class AbstractEventParser {

    @Autowired
    protected NetUtilsService netUtilsService;
    ...
}

但是,当有时间时,《摘要》的“网络服务”成员领域却是无效的。 这是奇怪的,因为在我的“测试应用文献目录......xml”档案中,我有这样的内容,我认为这可以照顾到汽车线......。

<mvc:annotation-driven />
<context:component-scan base-package="com.myco.myproject" />

我如何在我的日本特尼特试验中自动电线? 我更希望不要为成员领域增加和采用一套办法,但如果这是唯一的办法,那么就是这样。

问题回答

参看 EventFeed, 春季管理,即:活动类别,附加说明,@service@Component。 您的测试权中还有<代码>@Autowired>。 我没有看到你在<条码>上。 摘要Parset 试验





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签