部署注入接口的类时出现“WELD-001408 Unsatisfied dependency error”
我正在 JUnit4 和 Jboss6 上使用 Arquillian 进行一些单元测试。有一个外观(SomeFacadeclass),其中注入了“SomeClass”(这是一个接口)。当 Arquillian 部署 test.war 进行测试时,会弹出上述部署错误。 我应该怎么做才能解决这个问题?
I'm doing some unit tests using Arquillian on JUnit4 and Jboss6. There is a facade(SomeFacadeclass) that has the "SomeClass"(which is an interface) injected to it. When Arquillian deploys the test.war for testing the above deployment error pops up.
What should i do to solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜你的 bean 档案中没有
SomeClass
的实现I would guess that you don't have an implementation of
SomeClass
in your bean archives一切都解决了。我将实现类添加到 @Deployment 存档中,其他一些依赖类现在工作正常。
Everything was solved. I added the implementation class to the @Deployment archive and some other bunch of dependent classes things work fine now.