无状态轻松EntityManager注入?
JBoss 6。
我相信我可以将一个类标记为 @Stateless 并将其注释为一个轻松的 Web 服务。
到目前为止一切都很好,我的代码似乎已部署并运行。
但是,一如既往......我的 EntityManager 没有被注入并且保持为空。我尝试创建另一个没有 Resteasy 注释的类,将其标记为 @Stateless,注入 EntityManager 并将其注入到我的 Resteasy Web 服务中,但这次另一个无状态会话 bean 的注入为 null。
我应该能够将 EntityManager 注入 @Stateless Resteasy Web 服务吗?如果没有,我怎样才能获得一个 - 我没有运气创建一个无状态会话 bean 并将其注入到 servlet 中?
提前致谢。
JBoss 6.
I'm led to believe that I can mark a class as @Stateless and also annotate it as a resteasy webservice.
All good so far and my code seems to deploy and run.
But, as ever... my EntityManager isn't injected and remains null. I've tried creating another class without resteasy annotations, marking it as @Stateless, injecting EntityManager and having that injected into my resteasy web service, but this time the injection of the other stateless session bean is null.
Should I be able to inject an EntityManager into an @Stateless resteasy web service? If not, how can I get hold of one - I haven't had any luck creating a stateless session bean and injecting that into the servlet instead?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经通过在 servlet 中对会话 bean 使用 InitialContext 查找来设法绕过它。
I've managed to skirt around it by using an InitialContext lookup on the session bean from the servlet.