@Autowired 注释无法在 JUnit 类中注入 bean

发布于 2024-10-13 07:08:33 字数 721 浏览 2 评论 0原文

我的测试类:

public class myTest extends TestCase{
@Autowired
BeanClass beanObject
public void beanTest()
{
Classdata data = beanObject.getMethod();
}
}

我在以下行收到一个空指针异常:

Classdata data = beanObject.getMethod();

beanObject.getMethod(); 精确地给出了空指针异常

我应该如何在我的 Junit 类中自动装配字段 beanObject 以便我可以使用“BeanClass”类中的方法吗?


复制自评论:

简单来说..beanClass 是一个 具有某些方法的接口.. 我已经用这个 beanClass 标记了 @Service("beanObject") 注释..banClass 是 由beanClassImpl类实现 其中有方法实现.. 我需要在中使用这些实现 我的 testClass 来获取数据 比较..为此我正在做 @Autowired beanClass 中的beanObject 我的测试班..我进展得很糟糕 哪里错了?

my test class:

public class myTest extends TestCase{
@Autowired
BeanClass beanObject
public void beanTest()
{
Classdata data = beanObject.getMethod();
}
}

I am getting a null pointer exception at line:

Classdata data = beanObject.getMethod();

the beanObject.getMethod(); precisely gives nullpointer exception

How should i make possible the autowiring of the field beanObject in my Junit class so that i can use the methods from the "BeanClass" class?


Copied from Comments:

in plain terms.. beanClass is an
interface which has certain methods..
i have tagged that beanClass with
@Service("beanObject")
annotation..that banClass is
implemented by beanClassImpl class
which has the method implementations..
i need to use those implementations in
my testClass to get the data to be
compared.. for that i am doing
@Autowired beanClass beanObject in
my testClass.. m i going terribly
wrong somewhere?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风起 2024-10-20 07:08:33

您可能需要使用这些注释来装饰您的测试:

@ContextConfiguration(locations = {/* your xml locations here */})
@RunWith(SpringJUnit4ClassRunner.class)

或者,如果您使用 JUnit 3.x,则应该从 AbstractJUnit38SpringContextTests

Reference: TestContext 支持类

更新:问题似乎是找不到上下文文件(请参阅评论中的讨论)。

简单来说..beanClass 是一个
具有某些方法的接口..
我已经用这个 beanClass 标记了
@Service(“beanObject”)
注释..banClass 是
由beanClassImpl类实现
其中有方法实现..
我需要在中使用这些实现
我的 testClass 来获取数据
比较..为此我正在做
@Autowired beanClass beanObject 在我的
testClass..mi 出了严重错误
某处?

更多更新:

不要注释接口,注释实现类。用@Service注解接口没有任何效果!

You probably need to decorate your tests with these annotations:

@ContextConfiguration(locations = {/* your xml locations here */})
@RunWith(SpringJUnit4ClassRunner.class)

Or, if you use JUnit 3.x, you should extend from AbstractJUnit38SpringContextTests

Reference: TestContext support classes

Update: The problem seems to be that the context file can't be found (see discussion in comments).

in plain terms.. beanClass is an
interface which has certain methods..
i have tagged that beanClass with
@Service("beanObject")
annotation..that banClass is
implemented by beanClassImpl class
which has the method implementations..
i need to use those implementations in
my testClass to get the data to be
compared.. for that i am doing
@Autowired beanClass beanObject in my
testClass.. m i going terribly wrong
somewhere?

More Updates:

Don't annotate the interface, annotate the implementing class. Annotating the interface with @Service has no effect!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文