码头上的 CDI、Hibernate JSF
我正在尝试让 Weld、hibernate、jsf 组合在 Jetty 上工作。我在互联网上找到的最佳方法是 http:// /www.laliluna.de/articles/2011/01/12/jboss-weld-jpa-hibernate.html 。 清理依赖项是一件痛苦的事情,但我设法完成了这一点。 现在它对我有用,除了 EntityManagerStoreImpl 的初始化部分。 jetty 的焊接监听器似乎不会产生 ContainerInitialized 事件,因此永远不会调用观察该事件的 init 方法。 您能告诉我在码头环境中引导此类的最佳方法是什么吗?
谢谢!
I am trying to make Weld, hibernate, jsf combination work on Jetty. The best approach I found on internet was http://www.laliluna.de/articles/2011/01/12/jboss-weld-jpa-hibernate.html .
It was a pain to clean up the dependencies, but I managed to go through that.
Now it works for me except the initialization part of the EntityManagerStoreImpl. It seems the weld listener for jetty does not produce a ContainerInitialized event, so the init method which observes this event is never called.
Could you tell me please what is the best way to bootstrap this class in the jetty environment?
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是使用@PostConstruct注解。简单的!
The answer is to Use @PostConstruct annotation. Simple!