微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – EJB3 / JPA @Transactional

是否存在与 Spring的@Transactional等效的EJB或JPA注释?

解决方法

等效的EJB3属性是javax.ejb.TransactionAttribute.

就像Spring的@Transactional注释一样,您可以通过将TransactionAttributeType传递给TransactionAttribute注释来控制事务“传播”,如:

@TransactionAttribute(NOT_SUPPORTED)
@Stateful
public class TransactionBean implements Transaction {
...
    @TransactionAttribute(REQUIRES_NEW)
    public void firstMethod() {...}

    @TransactionAttribute(required)
    public void secondMethod() {...}

    public void thirdMethod() {...}

    public void fourthMethod() {...}
}

容器管理的事务在Part IV of the Java EE 5 Tutorial中描述.

原文地址:https://www.jb51.cc/java/120718.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐