什么是最好的、最容易集成的 Java FOSS JTA 库?
我目前正在研究 JBoss Transactions,并想听听其他人的经验。我自己想要一些小东西,很少依赖,很少陷阱并且遵循标准......
I am currently looking at JBoss Transactions and would like to hear about the experiences of others. I myself want something small, with few dependencies, few gotchas and follows standards...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想在 Glassfish 或 JBoss 中探索 JPA(使用 EclipseLink 或 Hibernate 实现)。它将为您提供两全其美的事务和关系数据映射。
我希望我正确理解了您的询问。
You might like to explore JPA(use EclipseLink or Hibernate to implement) in Glassfish or JBoss. It will give you best of both worlds Transaction and Relation Data mapping.
I hope I understood your query properly.
经过一些研究后,我发现了两个软件包,我相信这对我来说是一个可能的解决方案:
目前我喜欢 JOTM 只是因为它的文档更完整并且更容易遵循。我知道 jboss-tm 可以工作,因为它提供了 jboss a/sm 使用的 jta 实现,但是当有人开始集成 jta 实现时,jotm 似乎是赢家,因为它更容易进入。
After some research looking around i have come across two packages which i believe are a possible solution for me:
Currently i like JOTM simply because it is more document complete and easier to follow. I know that jboss-tm works as it provides the jta implementation used by the jboss a/sm but as someone getting started to integrate a jta implementation, jotm seems like the winner simply because its easier to get into.