com.sinszm.sofa.support.OrmTran Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of szm-sofa-boot-starter-atomikos Show documentation
Show all versions of szm-sofa-boot-starter-atomikos Show documentation
高可用服务框架,多数据源数据操作组件 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa.support;
import org.springframework.transaction.annotation.Transactional;
import java.lang.annotation.*;
/**
* ORM事务封装注解
*
* @author chenjianbo
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
@Transactional(rollbackFor = Exception.class)
public @interface OrmTran {
}