如何使用 EJB 3.1 在我的测试中注入 PesistenceContext?
你好,在 Spring 中,这样做很容易......因为 Spring 不需要容器,你只需添加一个 @autowired 就可以了。
但在 EJB 3.1 中,如果应用程序未部署,使用 @Inject 是没有用的...我得到了 nullpointer,并且由于测试期间缺少容器,获取它们看起来很合乎逻辑。
如何将 PersistenceContext 注入到我的 TESTS 中,例如仅使用 EJB 3.1 功能?没有容器可以吗?
Hi in Spring it's easy to do so... as Spring doesn't require an Container, you just add an @autowired and it's done.
But in EJB 3.1, using @Inject is useless if the app is not deployed... I am getting nullpointer and it's looks logical to get them, because of the lack of a container during tests.
How can I inject a PersistenceContext into my TESTS for example using only EJB 3.1 features ? is it possible without a container ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 Arquillian 项目。它允许对 Java EE 应用程序进行外部容器测试。
http://www.jboss.org/arquillian
Take a look at the Arquillian project. It allows outside container testing of Java EE applications.
http://www.jboss.org/arquillian
Glassfish 3.x 将允许您嵌入容器并运行测试。以下是一些可以帮助您入门的链接:
Glassfish 3.x will allow you to embed the container and run your tests. Here's a few links that should get you going: